Bug 699792 - ALT key not working correctly on Motorola DROID PRO. r=blassey

This commit is contained in:
Alex Pakhotin 2011-11-15 18:05:02 -08:00
Родитель a6c94d7771
Коммит 95b6038c30
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -842,7 +842,7 @@ public class GeckoInputConnection
}
if (isPreIme && mIMEState != IME_STATE_DISABLED &&
(event.getMetaState() & KeyEvent.META_ALT_ON) == 0)
(event.getMetaState() & KeyEvent.META_ALT_ON) != 0)
// Let active IME process pre-IME key events
return false;
@ -873,9 +873,10 @@ public class GeckoInputConnection
}
if (isPreIme && mIMEState != IME_STATE_DISABLED &&
(event.getMetaState() & KeyEvent.META_ALT_ON) == 0)
(event.getMetaState() & KeyEvent.META_ALT_ON) != 0)
// Let active IME process pre-IME key events
return false;
View v = GeckoApp.mAppContext.getLayerController().getView();
if (mIMEState == IME_STATE_DISABLED ||