Fix menu option dialog order

Change-Id: Iea619d26a2f2091b71182face2f6a66d188e0287
main
Tadashi G. Takaoka 2011-02-03 15:56:01 +09:00
parent 50d4ea30b6
commit ea55bf5df7
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}
}