Skip to content
Snippets Groups Projects
Commit 293db087 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Get rid of the double quote from the suggestion strip

bug: 5271209
Change-Id: I1823eaac07e184092bdf2a5d607fa08ff680fca5
parent 2be87255
No related branches found
No related tags found
No related merge requests found
......@@ -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 -->
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment