diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-11-18 17:01:58 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-11-18 17:01:58 -0800 |
commit | 0877d9345761d037df4e9e9e980da8d5288e57b6 (patch) | |
tree | ed6677c7a6b15560153f88d5cc2e34e165bf86fc | |
parent | a63d61042db1bef9bbd56cad9771fa97ebd3f5ac (diff) | |
download | subsurface-0877d9345761d037df4e9e9e980da8d5288e57b6.tar.gz |
Quick hack to make the dive add icons smaller
This is about the right size, but the scaling pixelates the icons. So this
is not really a fix, just a hack.
See #269
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-ui/diveplanner.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qt-ui/diveplanner.cpp b/qt-ui/diveplanner.cpp index 081f7f60d..d84e4aea9 100644 --- a/qt-ui/diveplanner.cpp +++ b/qt-ui/diveplanner.cpp @@ -1498,4 +1498,5 @@ ExpanderGraphics::ExpanderGraphics(QGraphicsItem* parent): QGraphicsRectItem(par Q_FOREACH(QGraphicsItem *i, childItems()){ i->setPos(i->pos().x(), i->pos().y() - r.height()); } + setScale(0.7); } |