Bug 582769 - Disable Hildon predictive dictionary action in editboxes. r=dougt

This commit is contained in:
Mark Finkle 2010-07-28 18:09:36 -07:00
Родитель db5b115750
Коммит 6604065979
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -577,6 +577,9 @@ nsGtkIMModule::SetIMEEnabled(nsWindow* aCaller, PRUint32 aState)
// Turn off auto-capitalization for editboxes
mode &= ~HILDON_GTK_INPUT_MODE_AUTOCAP;
// Turn off predictive dictionaries for editboxes
mode &= ~HILDON_GTK_INPUT_MODE_DICTIONARY;
g_object_set(G_OBJECT(im), "hildon-input-mode",
(HildonGtkInputMode)mode, NULL);
gIsVirtualKeyboardOpened = PR_TRUE;