Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 892b1fb1 authored by Jean Chalard's avatar Jean Chalard
Browse files

Fix a bug where suggestions would not update in Froyo WebTextView

Bug: 4396864
Change-Id: Ia45466319498ae7e35fe8a39b4e3a361d66ac2cc
parent 4ef1b6b6
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1610,7 +1610,10 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
            // TextEntryState.State.PICKED_SUGGESTION state.
            TextEntryState.typedCharacter((char) Keyboard.CODE_SPACE, true,
                    WordComposer.NOT_A_COORDINATE, WordComposer.NOT_A_COORDINATE);
            // From there on onUpdateSelection() will fire so suggestions will be updated
            // On Honeycomb+, onUpdateSelection() will fire, but in Gingerbread- in WebTextView
            // only it does not, for some reason. Force update suggestions so that it works
            // in Gingerbread- in WebTextView too.
            mHandler.postUpdateSuggestions();
        } else if (!showingAddToDictionaryHint) {
            // If we're not showing the "Touch again to save", then show corrections again.
            // In case the cursor position doesn't change, make sure we show the suggestions again.