Typing out text
For a few weeks now, trying to to type anything while using Firefox on android mobile is an exercise in frustration and insanity. It makes me want to tear my hair out. I type part of a word, and then it suddenly adds the autocompleted word after the end of the letter I already typed. It also keeps screwing up after apostrophes: I type "The car is Jo's car" for example, and suddenly the cursor makes a space after "Jo", but the cursor moves to behind the "s". The end result looks like "The car is Jo' car"s
I'm not making this up, it literally happened while typing the above line and I decided to leave it like that for you to see. Typing in firefox right now is maddening.
Toate răspunsurile (3)
We're working on it. If you use Samsung keyboard, disabling some "smart typing" features in Samsung Keyboard settings might be workaround.
TyDraniu said
We're working on it. If you use Samsung keyboard, disabling some "smart typing" features in Samsung Keyboard settings might be workaround.
Any updates?
Also, and I get that this is askiaskingn a lot, but could you explain why this issue is even happening? It would at least sate my curiosity.
could you explain why this issue is even happening? It would at least sate my curiosity.
Android IME (InputConnection) often requests current editable text be synchronous. But Gecko has its on content process, so we have two data blocks for Java side (ShadowText) and content side (CurrentText). This is synchronous when Gecko notifies IME of text/selection changes.
After we introduced a bug, it doesn't notify Gecko of IME composing range during batch mode to avoid unnecessary selection changes. After ending batch mode, we will send current composing ranges. Without text changes, IME content observer doesn't notify widget of any changes. So calling onIMESynchronized causes unexpected text/selection changes. Then text transaction is broken.
Modificat la