diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2014-10-15 15:30:51 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-10-18 15:16:11 -0700 |
commit | 72b256de629c7e4ef5c52d7a9ce62ebd68a77991 (patch) | |
tree | 4d42f30596eba1c393300a6499dc5cf0e2c759e0 /qt-ui/starwidget.cpp | |
parent | 5a2db2db4b31b37da5661db893d60619587e5a68 (diff) | |
download | subsurface-72b256de629c7e4ef5c52d7a9ce62ebd68a77991.tar.gz |
actually use defaultIconSize()
Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/starwidget.cpp')
-rw-r--r-- | qt-ui/starwidget.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/qt-ui/starwidget.cpp b/qt-ui/starwidget.cpp index e12692c52..fe4342b7b 100644 --- a/qt-ui/starwidget.cpp +++ b/qt-ui/starwidget.cpp @@ -1,4 +1,5 @@ #include "starwidget.h" +#include "metrics.h" #include <QSvgRenderer> #include <QPainter> #include <QPaintEvent> @@ -83,14 +84,9 @@ StarWidget::StarWidget(QWidget *parent, Qt::WindowFlags f) : QWidget(parent, f), current(0), readOnly(false) { - // compute image size, by rounding the font height to the nearest multiple of 16 + // set image size and spacing from the default icon size if (imgMetrics.size == -1) { - int height = QFontMetrics(parent->font()).height(); - imgMetrics.size = (height + 8)/16; - imgMetrics.size *= 16; - // enforce a minimum size - if (imgMetrics.size < 16) - imgMetrics.size = 16; + imgMetrics.size = defaultIconSize(); imgMetrics.spacing = imgMetrics.size/8; } |