diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-08-27 00:37:01 +0300 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-26 23:06:00 -0700 |
commit | 5aa55e7ed59f5d31b456b432d0c6d35c82c76408 (patch) | |
tree | 118f780095ba58189b73520a964bc6e641b2f48f /desktop-widgets | |
parent | eaf1bdbe5f810d2bd1fd45c489a33c3bd7fd4a51 (diff) | |
download | subsurface-5aa55e7ed59f5d31b456b432d0c6d35c82c76408.tar.gz |
modeldelegates: use font metrics for dive list row height
Include font metrics as part of the height in DiveListDelegate::sizeHint().
When 22px is hardcoded, this handles small fonts, but for larger
fonts it seem that the bottom of the dive list row text is cut
on Windows.
Keep 22px as the minimum size hint, but for larger fonts
use QFontMetric::height().
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/modeldelegates.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop-widgets/modeldelegates.cpp b/desktop-widgets/modeldelegates.cpp index 3af4b4f7a..2772dbcdb 100644 --- a/desktop-widgets/modeldelegates.cpp +++ b/desktop-widgets/modeldelegates.cpp @@ -24,7 +24,8 @@ QSize DiveListDelegate::sizeHint(const QStyleOptionViewItem&, const QModelIndex&) const { - return QSize(50, 22); + const QFontMetrics metrics(qApp->font()); + return QSize(50, qMax(22, metrics.height())); } // Gets the index of the model in the currentRow and column. |