diff options
Diffstat (limited to 'desktop-widgets/modeldelegates.cpp')
-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. |