summaryrefslogtreecommitdiff
path: root/src/game/GameView.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/GameView.cpp')
-rw-r--r--src/game/GameView.cpp4
1 files changed, 4 insertions, 0 deletions
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);