Skip to content

Commit

Permalink
make tag-suggestions case insensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
newhinton authored and droidmonkey committed Jan 19, 2025
1 parent 8d6d937 commit 4d7eae3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/gui/tag/TagsEdit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -408,6 +408,7 @@ struct TagsEdit::Impl
void setupCompleter()
{
completer->setWidget(ifce);
completer->setCaseSensitivity(Qt::CaseInsensitive);
connect(completer.get(),
static_cast<void (QCompleter::*)(QString const&)>(&QCompleter::activated),
[this](QString const& text) { currentText(text); });
Expand Down

0 comments on commit 4d7eae3

Please sign in to comment.