summaryrefslogtreecommitdiffstats
path: root/qt-ui
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-07 13:00:16 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-01-07 13:00:16 -0800
commitb08b32af2c6c34fb0b17a6479b72e27a6301027b (patch)
treed48cfeb67063e6064328dbee5a30bfac472861e4 /qt-ui
parent02103978ec89cc5538254cac82afc20e2084c004 (diff)
downloadsubsurface-b08b32af2c6c34fb0b17a6479b72e27a6301027b.tar.gz
CVS import UI: mark the column names in blue as well
And make the bubbles slightly larger. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r--qt-ui/divelogimportdialog.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/qt-ui/divelogimportdialog.cpp b/qt-ui/divelogimportdialog.cpp
index b2100d26a..108de0f6b 100644
--- a/qt-ui/divelogimportdialog.cpp
+++ b/qt-ui/divelogimportdialog.cpp
@@ -501,7 +501,8 @@ void TagDragDelegate::paint(QPainter * painter, const QStyleOptionViewItem & opt
{
painter->save();
painter->setRenderHints(QPainter::Antialiasing);
- painter->drawRoundedRect(option.rect.adjusted(4,4,-4,-4), 5, 5);
+ painter->setBrush(QBrush(AIR_BLUE_TRANS));
+ painter->drawRoundedRect(option.rect.adjusted(2,2,-2,-2), 5, 5);
painter->restore();
QStyledItemDelegate::paint(painter, option, index);
}