Fix flashing box (autocompletion empty list) whilst Typing issue
Fix #9433, close #11460
This commit is contained in:
parent
48ee390cdd
commit
ee28051a71
|
@ -242,6 +242,9 @@ bool AutoCompletion::showApiAndWordComplete()
|
|||
}
|
||||
}
|
||||
|
||||
if (!wordArray.size())
|
||||
return false;
|
||||
|
||||
// Sort word array and convert it to a single string with space-separated words
|
||||
|
||||
sort(wordArray.begin(), wordArray.end());
|
||||
|
|
Loading…
Reference in New Issue