From 90f6205330f84cb2eccbe0d977d04968aaa17c47 Mon Sep 17 00:00:00 2001 From: 0b101 <29680628+0b101@users.noreply.github.com> Date: Thu, 5 Jul 2018 10:11:04 -0500 Subject: [PATCH] Changed active button color to YellowDark --- escher/src/button.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/escher/src/button.cpp b/escher/src/button.cpp index 97dd9814e..636ee8aac 100644 --- a/escher/src/button.cpp +++ b/escher/src/button.cpp @@ -38,7 +38,7 @@ bool Button::handleEvent(Ion::Events::Event event) { void Button::setHighlighted(bool highlight) { HighlightCell::setHighlighted(highlight); - KDColor backgroundColor = highlight? Palette::Select : KDColorWhite; + KDColor backgroundColor = highlight? Palette::YellowDark : KDColorWhite; m_messageTextView.setBackgroundColor(backgroundColor); markRectAsDirty(bounds()); }