diff options
author | 2012-02-08 06:48:59 -0800 | |
---|---|---|
committer | 2012-02-08 06:48:59 -0800 | |
commit | 69b81e3dd37dd7da71c4742ac71131e265394562 (patch) | |
tree | b00eb73eee9e944d843080de903ad4d2ff28988f /java/src | |
parent | cc9400555c87985b360f5ba418a15747d76c4e85 (diff) | |
parent | 5962312b0724d8546ef76e3cd065b7baf578822f (diff) | |
download | latinime-69b81e3dd37dd7da71c4742ac71131e265394562.tar.gz latinime-69b81e3dd37dd7da71c4742ac71131e265394562.tar.xz latinime-69b81e3dd37dd7da71c4742ac71131e265394562.zip |
am 5962312b: Custom action label should be a part of keyboard identifier
* commit '5962312b0724d8546ef76e3cd065b7baf578822f':
Custom action label should be a part of keyboard identifier
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/keyboard/KeyboardId.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/KeyboardId.java b/java/src/com/android/inputmethod/keyboard/KeyboardId.java index a000eae62..3ab24933c 100644 --- a/java/src/com/android/inputmethod/keyboard/KeyboardId.java +++ b/java/src/com/android/inputmethod/keyboard/KeyboardId.java @@ -102,6 +102,7 @@ public class KeyboardId { id.mHasShortcutKey, id.isMultiLine(), id.imeAction(), + id.mCustomActionLabel, id.mLocale }); } @@ -121,6 +122,7 @@ public class KeyboardId { && other.mHasShortcutKey == this.mHasShortcutKey && other.isMultiLine() == this.isMultiLine() && other.imeAction() == this.imeAction() + && TextUtils.equals(other.mCustomActionLabel, this.mCustomActionLabel) && other.mLocale.equals(this.mLocale); } |