From 71ca47f81d004124d58049ae40039e5f31252fea Mon Sep 17 00:00:00 2001 From: Stuart Morgan Date: Tue, 31 Jul 2012 13:58:03 +0100 Subject: [PATCH] Per UI guidelines remove 'Cancel' option from mythgame popup --- mythplugins/mythgame/mythgame/gameui.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mythplugins/mythgame/mythgame/gameui.cpp b/mythplugins/mythgame/mythgame/gameui.cpp index ae109a66b74..fd12f048d88 100644 --- a/mythplugins/mythgame/mythgame/gameui.cpp +++ b/mythplugins/mythgame/mythgame/gameui.cpp @@ -279,13 +279,12 @@ void GameUI::itemClicked(MythUIButtonListItem*) { chooseSystemPopup->SetReturnEvent(this, "chooseSystemPopup"); QString all_systems = romInfo->AllSystems(); - QStringList players = all_systems.split(","); + QStringList players = all_systems.split(','); for (QStringList::Iterator it = players.begin(); it != players.end(); ++it) { chooseSystemPopup->AddButton(*it); } - chooseSystemPopup->AddButton(tr("Cancel")); popupStack->AddScreen(chooseSystemPopup); } else