mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-05-19 16:30:19 +00:00
Remove suggestion appears when only 1 word is displayed (#84)
This commit is contained in:
parent
50921ef8cd
commit
eed4794887
1 changed files with 1 additions and 1 deletions
|
@ -315,7 +315,7 @@ public final class SuggestionStripView extends RelativeLayout implements OnClick
|
|||
AudioAndHapticFeedbackManager.getInstance().performHapticAndAudioFeedback(
|
||||
Constants.NOT_A_CODE, this);
|
||||
if (isShowingMoreSuggestionPanel() || !showMoreSuggestions()) {
|
||||
for (int i = 0; i < mStartIndexOfMoreSuggestions; i++) {
|
||||
for (int i = 0; i <= mStartIndexOfMoreSuggestions; i++) {
|
||||
if (view == mWordViews.get(i)) {
|
||||
showDeleteSuggestionDialog(mWordViews.get(i));
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue