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
293db087
Commit
293db087
authored
13 years ago
by
Ken Wakasa
Browse files
Options
Downloads
Patches
Plain Diff
Get rid of the double quote from the suggestion strip
bug: 5271209 Change-Id: I1823eaac07e184092bdf2a5d607fa08ff680fca5
parent
2be87255
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
java/res/values/donottranslate.xml
+1
-1
1 addition, 1 deletion
java/res/values/donottranslate.xml
java/src/com/android/inputmethod/latin/SuggestionsView.java
+1
-1
1 addition, 1 deletion
java/src/com/android/inputmethod/latin/SuggestionsView.java
with
2 additions
and
2 deletions
java/res/values/donottranslate.xml
+
1
−
1
View file @
293db087
...
...
@@ -19,7 +19,7 @@
-->
<resources
xmlns:xliff=
"urn:oasis:names:tc:xliff:document:1.2"
>
<!-- Symbols that are suggested between words -->
<string
name=
"suggested_punctuations"
>
!?,\u0022
:;
()\u0027-/@_
</string>
<string
name=
"suggested_punctuations"
>
!?,
:;
\u0022()\u0027-/@_
</string>
<!-- Symbols that should be swapped with a magic space -->
<string
name=
"magic_space_swapping_symbols"
>
.,;:!?)]}\u0022
</string>
<!-- Symbols that should strip a magic space -->
...
...
This diff is collapsed.
Click to expand it.
java/src/com/android/inputmethod/latin/SuggestionsView.java
+
1
−
1
View file @
293db087
...
...
@@ -146,7 +146,7 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener,
private
static
final
int
DEFAULT_SUGGESTIONS_COUNT_IN_STRIP
=
3
;
private
static
final
int
DEFAULT_CENTER_SUGGESTION_PERCENTILE
=
40
;
private
static
final
int
DEFAULT_MAX_MORE_SUGGESTIONS_ROW
=
2
;
private
static
final
int
PUNCTUATIONS_IN_STRIP
=
6
;
private
static
final
int
PUNCTUATIONS_IN_STRIP
=
5
;
public
final
int
mPadding
;
public
final
int
mDividerWidth
;
...
...
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