summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-04-20 20:55:55 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-04-20 20:55:55 +0200
commit487f6e4d82e39325088f638b0b967c0cbee40709 (patch)
tree440c2a8d6ab28a8a028a179efdd285ad783a164d
parentfbfdebc7644698ae6e9fe0ed114fdfb6a84e43b3 (diff)
Make samplesorter colours the same as selections in canvas.
-rw-r--r--dgedit/samplesorter.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/dgedit/samplesorter.cc b/dgedit/samplesorter.cc
index 402bc37..03547e8 100644
--- a/dgedit/samplesorter.cc
+++ b/dgedit/samplesorter.cc
@@ -159,11 +159,11 @@ void SampleSorter::paintEvent(QPaintEvent *event)
{
QPainter painter(this);
- QColor colBg = QColor(180, 200, 180);
- QColor colFg = QColor(160, 180, 160);
- QColor colPt = QColor(255, 100, 100);
- QColor colPtPreview = QColor(0, 0, 255);
- QColor colPtSel = QColor(255, 255, 100);
+ QColor colBg = QColor(180, 200, 180, 160);
+ QColor colFg = QColor(160, 180, 160, 160);
+ QColor colPt = QColor(255, 100, 100, 160);
+ QColor colPtPreview = QColor(0, 0, 255, 60);
+ QColor colPtSel = QColor(255, 255, 100, 160);
painter.setPen(colBg);
painter.setBrush(colBg);