Skip to content

Commit

Permalink
Fix MythVideo general settings page not working
Browse files Browse the repository at this point in the history
How long that one has been broken ???

The new MythUI screen is always on top, so it must be hidden when starting on old Qt screen…
Hopefully there are no more like this
  • Loading branch information
jyavenard committed Apr 2, 2014
1 parent 66e6b5b commit d7de3ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/main.cpp
Expand Up @@ -810,7 +810,7 @@ static void TVMenuCallback(void *data, QString &selection)
(void)data;
QString sel = selection.toLower();

if (sel.startsWith("settings "))
if (sel.startsWith("settings ") || sel == "video_settings_general")
{
GetMythUI()->AddCurrentLocation("Setup");
gCoreContext->ActivateSettingsCache(false);
Expand Down

0 comments on commit d7de3ff

Please sign in to comment.