Revert "Changed active button color to YellowDark"

This reverts commit 90f6205330.
This commit is contained in:
Romain Goyet
2018-08-24 16:54:29 +02:00
committed by LeaNumworks
parent 70a2db9336
commit ebf309654c

View File

@@ -38,7 +38,7 @@ bool Button::handleEvent(Ion::Events::Event event) {
void Button::setHighlighted(bool highlight) {
HighlightCell::setHighlighted(highlight);
KDColor backgroundColor = highlight? Palette::YellowDark : KDColorWhite;
KDColor backgroundColor = highlight? Palette::Select : KDColorWhite;
m_messageTextView.setBackgroundColor(backgroundColor);
markRectAsDirty(bounds());
}