Changed active button color to YellowDark

This commit is contained in:
0b101
2018-07-05 10:11:04 -05:00
committed by Ecco
parent 7a0e39f88e
commit 90f6205330

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::Select : KDColorWhite;
KDColor backgroundColor = highlight? Palette::YellowDark : KDColorWhite;
m_messageTextView.setBackgroundColor(backgroundColor);
markRectAsDirty(bounds());
}