mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-13 20:04:01 +02:00
fix typo in favorites menu
This commit is contained in:
@@ -622,7 +622,7 @@ void GameView::NotifyMenuListChanged(GameModel * sender)
|
|||||||
tempString += menuList[i]->GetIcon();
|
tempString += menuList[i]->GetIcon();
|
||||||
String description = menuList[i]->GetDescription();
|
String description = menuList[i]->GetDescription();
|
||||||
if (i == SC_FAVORITES && !Favorite::Ref().AnyFavorites())
|
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);
|
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->Appearance.Margin = ui::Border(0, 2, 3, 2);
|
||||||
tempButton->SetTogglable(true);
|
tempButton->SetTogglable(true);
|
||||||
|
Reference in New Issue
Block a user