From 22de8ecb6ce64d947a7e4efd50660525ab36b943 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Thu, 6 Sep 2012 11:54:01 -0400 Subject: Change hover color of update box (white just didn't look right) diff --git a/src/game/GameView.cpp b/src/game/GameView.cpp index 97a8634..27c3637 100644 --- a/src/game/GameView.cpp +++ b/src/game/GameView.cpp @@ -1618,6 +1618,8 @@ void GameView::NotifyNotificationsChanged(GameModel * sender) tempButton->SetActionCallback(new NotificationButtonAction(this, *iter)); tempButton->Appearance.BorderInactive = style::Colour::WarningTitle; tempButton->Appearance.TextInactive = style::Colour::WarningTitle; + tempButton->Appearance.BorderHover = ui::Colour(255, 175, 0); + tempButton->Appearance.TextHover = ui::Colour(255, 175, 0); AddComponent(tempButton); notificationComponents.push_back(tempButton); @@ -1628,6 +1630,8 @@ void GameView::NotifyNotificationsChanged(GameModel * sender) tempButton->Appearance.Margin.Top+=2; tempButton->Appearance.BorderInactive = style::Colour::WarningTitle; tempButton->Appearance.TextInactive = style::Colour::WarningTitle; + tempButton->Appearance.BorderHover = ui::Colour(255, 175, 0); + tempButton->Appearance.TextHover = ui::Colour(255, 175, 0); AddComponent(tempButton); notificationComponents.push_back(tempButton); -- cgit v0.9.2-21-gd62e