diff options
author | Patrick Valsecchi <patrick@thus.ch> | 2013-10-01 15:52:23 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-10-01 09:49:41 -0700 |
commit | f02b5e5d9093cb8e3049d1c02d5f8b321e101749 (patch) | |
tree | e826d6887dbebf55a70a406a93b4962fa2cb4013 /qt-ui/divelistview.cpp | |
parent | 1524b1a0aee3086c61d9b28fff43832b30a76948 (diff) | |
download | subsurface-f02b5e5d9093cb8e3049d1c02d5f8b321e101749.tar.gz |
Fix weight adding in the Qt UI & fix the header height for tables
Fixes #203
Signed-off-by: Patrick Valsecchi <patrick@thus.ch>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelistview.cpp')
-rw-r--r-- | qt-ui/divelistview.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qt-ui/divelistview.cpp b/qt-ui/divelistview.cpp index 383307613..0996130c4 100644 --- a/qt-ui/divelistview.cpp +++ b/qt-ui/divelistview.cpp @@ -34,6 +34,8 @@ DiveListView::DiveListView(QWidget *parent) : QTreeView(parent), mouseClickSelec setSortingEnabled(false); setContextMenuPolicy(Qt::DefaultContextMenu); header()->setContextMenuPolicy(Qt::ActionsContextMenu); + const QFontMetrics metrics(defaultModelFont()); + header()->setMinimumHeight(metrics.height() + 10); QAction *showSearchBox = new QAction(tr("Show Search Box"), this); showSearchBox->setShortcut( Qt::CTRL + Qt::Key_F); showSearchBox->setShortcutContext(Qt::ApplicationShortcut); |