aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-02-03 15:56:01 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-02-03 15:56:01 +0900
commitea55bf5df7d26d12b36c47141bfbac5730c3929a (patch)
treeb5383c2779488bbfe96e09e59151e07126951c8f /java
parent50d4ea30b63c7cb00fb1d92c2eebda383a63079d (diff)
downloadlatinime-ea55bf5df7d26d12b36c47141bfbac5730c3929a.tar.gz
latinime-ea55bf5df7d26d12b36c47141bfbac5730c3929a.tar.xz
latinime-ea55bf5df7d26d12b36c47141bfbac5730c3929a.zip
Fix menu option dialog order
Change-Id: Iea619d26a2f2091b71182face2f6a66d188e0287
Diffstat (limited to 'java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 5ce1b7e95..beb950c78 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -2272,10 +2272,10 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
di.dismiss();
switch (position) {
case 0:
- launchSettings();
+ mImm.showInputMethodPicker();
break;
case 1:
- mImm.showInputMethodPicker();
+ launchSettings();
break;
}
}