diff options
author | Maximilian Güntner <maximilian.guentner@gmail.com> | 2013-11-15 01:39:02 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-15 13:14:39 +0900 |
commit | 3302ee11c1fc215b979da7a403dc5468da68e84c (patch) | |
tree | 1668eff58fec6f96fd0b21476f4e5e5964adb3b8 /qt-ui | |
parent | 80532a685adc518446504997bc89129e76a7651a (diff) | |
download | subsurface-3302ee11c1fc215b979da7a403dc5468da68e84c.tar.gz |
changed tag completition to case-insensitive
When completing tags, the case of the completion prefix
should not matter.
Signed-off-by: Maximilian Güntner <maximilian.guentner@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/maintab.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 315eff90a..970f90a2f 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -89,6 +89,7 @@ MainTab::MainTab(QWidget *parent) : QTabWidget(parent), completers.location = new QCompleter(LocationCompletionModel::instance(), ui.location); completers.suit = new QCompleter(SuitCompletionModel::instance(), ui.suit); completers.tags = new QCompleter(TagCompletionModel::instance(), ui.tagWidget); + completers.tags->setCaseSensitivity(Qt::CaseInsensitive); ui.buddy->setCompleter(completers.buddy); ui.divemaster->setCompleter(completers.divemaster); ui.location->setCompleter(completers.location); |