diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-07 13:00:16 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-07 13:00:16 -0800 |
commit | b08b32af2c6c34fb0b17a6479b72e27a6301027b (patch) | |
tree | d48cfeb67063e6064328dbee5a30bfac472861e4 /qt-ui/divelogimportdialog.cpp | |
parent | 02103978ec89cc5538254cac82afc20e2084c004 (diff) | |
download | subsurface-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/divelogimportdialog.cpp')
-rw-r--r-- | qt-ui/divelogimportdialog.cpp | 3 |
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); } |