mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-06-08 07:37:41 +00:00
fix clipboard suggestion being shown for a split second when starting gesture typing
This commit is contained in:
parent
105d044aa8
commit
a3bc3b56ff
3 changed files with 18 additions and 6 deletions
|
@ -1630,7 +1630,11 @@ public class LatinIME extends InputMethodService implements
|
|||
@Override
|
||||
public void showSuggestionStrip(final SuggestedWords suggestedWords) {
|
||||
if (suggestedWords.isEmpty()) {
|
||||
setNeutralSuggestionStrip();
|
||||
// avoids showing clipboard suggestion when starting gesture typing
|
||||
// should be fine, as there will be another suggestion in a few ms
|
||||
// (but not a great style to avoid this visual glitch, maybe revert this commit and replace with sth better)
|
||||
if (suggestedWords.mInputStyle != SuggestedWords.INPUT_STYLE_UPDATE_BATCH)
|
||||
setNeutralSuggestionStrip();
|
||||
} else {
|
||||
setSuggestedWords(suggestedWords);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue