diff --git a/escher/src/button_state.cpp b/escher/src/button_state.cpp index e5c276ff4..3541eb499 100644 --- a/escher/src/button_state.cpp +++ b/escher/src/button_state.cpp @@ -22,7 +22,7 @@ void ButtonState::layoutSubviews(bool force) { } void ButtonState::drawRect(KDContext * ctx, KDRect rect) const { - KDColor backColor = isHighlighted() ? highlightedBackgroundColor() : KDColorWhite; + KDColor backColor = isHighlighted() ? highlightedBackgroundColor() : Palette::ButtonBackground; ctx->fillRect(bounds(), backColor); }