From 8e09edd1888a6ac5ada12a3a78d16c5bba0f7077 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Sat, 7 Jul 2018 21:41:36 -0400 Subject: [PATCH] fix typo in favorites menu --- src/gui/game/GameView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/game/GameView.cpp b/src/gui/game/GameView.cpp index 8ce76c3f2..2bec6c61e 100644 --- a/src/gui/game/GameView.cpp +++ b/src/gui/game/GameView.cpp @@ -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);