diff options
| author | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-04-20 20:55:55 +0200 | 
|---|---|---|
| committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2014-04-20 20:55:55 +0200 | 
| commit | 487f6e4d82e39325088f638b0b967c0cbee40709 (patch) | |
| tree | 440c2a8d6ab28a8a028a179efdd285ad783a164d /dgedit | |
| parent | fbfdebc7644698ae6e9fe0ed114fdfb6a84e43b3 (diff) | |
Make samplesorter colours the same as selections in canvas.
Diffstat (limited to 'dgedit')
| -rw-r--r-- | dgedit/samplesorter.cc | 10 | 
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); | 
