Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
platform_packages_inputmethods_LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LMODroid
platform_packages_inputmethods_LatinIME
Commits
0ced24ef
Commit
0ced24ef
authored
1 year ago
by
Georg Veichtlbauer
Committed by
Dhina17
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
LatinIME: Never use emoji action key in place of enter
Change-Id: I3359bcee3da4fc7fbdfe655e959d25c26d8cf585
parent
ec8a0637
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/res/xml/key_styles_enter.xml
+0
-7
0 additions, 7 deletions
java/res/xml/key_styles_enter.xml
tests/src/com/android/inputmethod/keyboard/layout/customizer/LayoutCustomizer.java
+1
-1
1 addition, 1 deletion
...utmethod/keyboard/layout/customizer/LayoutCustomizer.java
with
1 addition
and
8 deletions
java/res/xml/key_styles_enter.xml
+
0
−
7
View file @
0ced24ef
...
...
@@ -247,13 +247,6 @@
</case>
<!-- Smiley in textShortMessage field.
This <case> should be after Shift + Enter <case> and before any of action <case>. -->
<case
latin:mode=
"im"
>
<key-style
latin:styleName=
"enterKeyStyle"
latin:parentStyle=
"emojiKeyStyle"
/>
</case>
<case
latin:imeAction=
"actionGo"
>
...
...
This diff is collapsed.
Click to expand it.
tests/src/com/android/inputmethod/keyboard/layout/customizer/LayoutCustomizer.java
+
1
−
1
View file @
0ced24ef
...
...
@@ -161,7 +161,7 @@ public class LayoutCustomizer extends AbstractLayoutBase {
* @return the array of {@link ExpectedKey} that should be placed as an enter key.
*/
public
ExpectedKey
getEnterKey
(
final
boolean
isPhone
)
{
return
isPhone
?
key
(
ENTER_KEY
,
EMOJI_ACTION_KEY
)
:
ENTER_KEY
;
return
ENTER_KEY
;
}
/**
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment