am aa0458f9: Fix Input options dialog

* commit 'aa0458f917bb823efab6245f08c65e8f2f7327ac':
  Fix Input options dialog
main
Ken Wakasa 2011-01-25 10:23:00 -08:00 committed by Android Git Automerger
commit 71aafa9445
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;
}
}
};