summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--muse2/ChangeLog3
-rw-r--r--muse2/muse/transport.cpp2
2 files changed, 3 insertions, 2 deletions
diff --git a/muse2/ChangeLog b/muse2/ChangeLog
index ce8b11e6..f2d81ecc 100644
--- a/muse2/ChangeLog
+++ b/muse2/ChangeLog
@@ -1,8 +1,9 @@
11.11.2010
- WIP: Mixer and strips re-designed to be theme/font friendly - no more fixed STRIP_WIDTH. (Tim)
- Fixed Slider, Knob and DoubleEntry classes. Knob anti-aliasing applied (where allowed).
+ - Transport handle colour fixed - added setAutoFillBackground(true).
10.11.2010
- - Ported transport window to Qt4. The handle color needs a fix (Orcan)
+ - Ported transport window to Qt4. The handle color needs a fix (Orcan)
09.11.2010
- Fixed audio and midi strips and converted to Qt4. Looks OK now, but will be better... (Tim)
TODO: Convert Slider, Knob, EffectRack, ComboBox classes etc. (After that the strips will be perfect.)
diff --git a/muse2/muse/transport.cpp b/muse2/muse/transport.cpp
index e06554d6..e080fd67 100644
--- a/muse2/muse/transport.cpp
+++ b/muse2/muse/transport.cpp
@@ -79,10 +79,10 @@ Handle::Handle(QWidget* r, QWidget* parent)
rootWin = r;
setFixedWidth(20);
setCursor(Qt::pointingHandCursor);
- // ORCAN - coloring does not seem to work properly
QPalette palette;
palette.setColor(this->backgroundRole(), config.transportHandleColor);
this->setPalette(palette);
+ setAutoFillBackground(true);
}
//---------------------------------------------------------