mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
am 08bc97f8
: Merge "Allow double-space-to-period after a plus char"
* commit '08bc97f86fd82b51a59e1d0c6532b093c54dd3b5': Allow double-space-to-period after a plus char
This commit is contained in:
commit
1defb939c5
@ -169,9 +169,7 @@ public final class Constants {
|
||||
public static final int CODE_EXCLAMATION_MARK = '!';
|
||||
public static final int CODE_SLASH = '/';
|
||||
public static final int CODE_COMMERCIAL_AT = '@';
|
||||
// TODO: Check how this should work for right-to-left languages. It seems to stand
|
||||
// that for rtl languages, a closing parenthesis is a left parenthesis. Is this
|
||||
// managed by the font? Or is it a different char?
|
||||
public static final int CODE_PLUS = '+';
|
||||
public static final int CODE_CLOSING_PARENTHESIS = ')';
|
||||
public static final int CODE_CLOSING_SQUARE_BRACKET = ']';
|
||||
public static final int CODE_CLOSING_CURLY_BRACKET = '}';
|
||||
|
@ -1394,7 +1394,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
||||
|| codePoint == Constants.CODE_CLOSING_PARENTHESIS
|
||||
|| codePoint == Constants.CODE_CLOSING_SQUARE_BRACKET
|
||||
|| codePoint == Constants.CODE_CLOSING_CURLY_BRACKET
|
||||
|| codePoint == Constants.CODE_CLOSING_ANGLE_BRACKET;
|
||||
|| codePoint == Constants.CODE_CLOSING_ANGLE_BRACKET
|
||||
|| codePoint == Constants.CODE_PLUS;
|
||||
}
|
||||
|
||||
// Callback for the {@link SuggestionStripView}, to call when the "add to dictionary" hint is
|
||||
|
Loading…
Reference in New Issue
Block a user