Skip to content

Commit

Permalink
fix typo in favorites menu
Browse files Browse the repository at this point in the history
  • Loading branch information
jacob1 committed Jul 8, 2018
1 parent 143ba20 commit 8e09edd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/game/GameView.cpp
Expand Up @@ -622,7 +622,7 @@ void GameView::NotifyMenuListChanged(GameModel * sender)
tempString += menuList[i]->GetIcon();
String description = menuList[i]->GetDescription();
if (i == SC_FAVORITES && !Favorite::Ref().AnyFavorites())
description += " (Use ctrl+shift+click toggle the favorite status of an element)";
description += " (Use ctrl+shift+click to toggle the favorite status of an element)";
ui::Button * tempButton = new ui::Button(ui::Point(WINDOWW-16, currentY), ui::Point(15, 15), tempString, description);
tempButton->Appearance.Margin = ui::Border(0, 2, 3, 2);
tempButton->SetTogglable(true);
Expand Down

0 comments on commit 8e09edd

Please sign in to comment.