1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2024-11-22 17:02:21 -05:00

Remove bogus setImeOptions() in ConversationActivity

I thought this was removed when we moved the setImeOptions() further
down in onCreate(), but it's still here somehow.  This causes the Send
key on the keyboard to disappear when fullscreen IMEs are disabled.
This commit is contained in:
Steven Luo 2011-07-03 02:19:03 -07:00 committed by Sebastian Kaspari
parent d80f4133f1
commit e0f90768b2

View File

@ -201,9 +201,6 @@ public class ConversationActivity extends Activity implements ServiceConnection,
EditText input = (EditText) findViewById(R.id.input); EditText input = (EditText) findViewById(R.id.input);
input.setOnKeyListener(inputKeyListener); input.setOnKeyListener(inputKeyListener);
if (!settings.imeExtract()){
input.setImeOptions(EditorInfo.IME_FLAG_NO_EXTRACT_UI);
}
switcher = (ViewSwitcher) findViewById(R.id.switcher); switcher = (ViewSwitcher) findViewById(R.id.switcher);