Fix single accented letter suggestion in hashtags.

Fixes #5335.
This commit is contained in:
John Preston 2018-11-07 14:12:36 +04:00
parent 27103889a4
commit c496a34f57
1 changed files with 5 additions and 1 deletions

View File

@ -232,7 +232,11 @@ void FieldAutocomplete::updateFiltered(bool resetScroll) {
auto &recent(cRecentWriteHashtags());
hrows.reserve(recent.size());
for (auto i = recent.cbegin(), e = recent.cend(); i != e; ++i) {
if (!listAllSuggestions && (!i->first.startsWith(_filter, Qt::CaseInsensitive) || i->first.size() == _filter.size())) {
if (!listAllSuggestions
&& (i->first.size() == _filter.size()
|| !TextUtilities::RemoveAccents(i->first).startsWith(
_filter,
Qt::CaseInsensitive))) {
continue;
}
hrows.push_back(i->first);