зеркало из https://github.com/mozilla/pjs.git
Bug 699792 - ALT key not working correctly on Motorola DROID PRO. r=blassey
This commit is contained in:
Родитель
a6c94d7771
Коммит
95b6038c30
|
@ -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 ||
|
||||
|
|
Загрузка…
Ссылка в новой задаче