am 71aafa94: am aa0458f9: Fix Input options dialog

* commit '71aafa9445c3b830b9cbe56911a91b57d25e20e3':
  Fix Input options dialog
main
Ken Wakasa 2011-01-25 10:24:55 -08:00 committed by Android Git Automerger
commit 14e1367f6d
1 changed files with 3 additions and 3 deletions

View File

@ -2224,9 +2224,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
di.dismiss();
switch (position) {
case 0:
launchSettings();
break;
case 1:
Intent intent = new Intent(
android.provider.Settings.ACTION_INPUT_METHOD_SUBTYPE_SETTINGS);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK
@ -2236,6 +2233,9 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
mInputMethodId);
startActivity(intent);
break;
case 1:
launchSettings();
break;
}
}
};