Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LatinIME
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
keyboard
LatinIME
Commits
0b475760
Commit
0b475760
authored
13 years ago
by
Ken Wakasa
Browse files
Options
Downloads
Patches
Plain Diff
Fix snap back behavior for a quote mark input.
Follow-up for I8168ce6a Change-Id: I63b04471c90d3d02de1bb8f092b5d57614cd8591
parent
19bfef6c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
+5
-1
5 additions, 1 deletion
...rc/com/android/inputmethod/keyboard/KeyboardSwitcher.java
with
5 additions
and
1 deletion
java/src/com/android/inputmethod/keyboard/KeyboardSwitcher.java
+
5
−
1
View file @
0b475760
...
@@ -698,11 +698,15 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
...
@@ -698,11 +698,15 @@ public class KeyboardSwitcher implements SharedPreferences.OnSharedPreferenceCha
if
(!
isSpaceCharacter
(
code
)
&&
code
>=
0
)
{
if
(!
isSpaceCharacter
(
code
)
&&
code
>=
0
)
{
mSwitchState
=
SWITCH_STATE_SYMBOL
;
mSwitchState
=
SWITCH_STATE_SYMBOL
;
}
}
// Snap back to alpha keyboard mode immediately if user types a quote character.
if
(
isQuoteCharacter
(
code
))
{
changeKeyboardMode
();
}
break
;
break
;
case
SWITCH_STATE_SYMBOL:
case
SWITCH_STATE_SYMBOL:
case
SWITCH_STATE_CHORDING_SYMBOL:
case
SWITCH_STATE_CHORDING_SYMBOL:
// Snap back to alpha keyboard mode if user types one or more non-space/enter
// Snap back to alpha keyboard mode if user types one or more non-space/enter
// characters followed by a space/enter or quot
ation mark
.
// characters followed by a space/enter or
a
quot
e character
.
if
(
isSpaceCharacter
(
code
)
||
isQuoteCharacter
(
code
))
{
if
(
isSpaceCharacter
(
code
)
||
isQuoteCharacter
(
code
))
{
changeKeyboardMode
();
changeKeyboardMode
();
}
}
...
...
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