diff options
author | Tomaz Canabrava <tomaz.canabrava@intel.com> | 2014-10-31 14:05:52 -0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-31 13:52:51 -0700 |
commit | 1876bec08bd8cce51bc18872bc8134bdd12500f7 (patch) | |
tree | 1b434f3494900f1ffba4843521131ccec85495e0 /qt-ui | |
parent | d50e2d3356357fcd81ebb0c170decbf7f5ee932a (diff) | |
download | subsurface-1876bec08bd8cce51bc18872bc8134bdd12500f7.tar.gz |
Make possible to hide the tag filter.
It was impossible to remove the tag filter after opening it.
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/mainwindow.cpp b/qt-ui/mainwindow.cpp index 586be85f0..f5794b6d7 100644 --- a/qt-ui/mainwindow.cpp +++ b/qt-ui/mainwindow.cpp @@ -1382,5 +1382,5 @@ void MainWindow::on_paste_triggered() void MainWindow::on_actionFilterTags_triggered() { - ui.tagFilter->show(); + ui.tagFilter->setVisible(!ui.tagFilter->isVisible()); } |