Skip to content

Commit

Permalink
MythVideo: force a settings cache reload after showing the global vid…
Browse files Browse the repository at this point in the history
…eo settings.

This fixes a problem in MythVideo were some settings needed a restart of the
frontend before they would take effect.
  • Loading branch information
Paul Harrison committed Jun 26, 2011
1 parent d5144e1 commit 34d0c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/programs/mythfrontend/main.cpp
Expand Up @@ -1000,7 +1000,7 @@ static void TVMenuCallback(void *data, QString &selection)
else
VERBOSE(VB_IMPORTANT, "Unknown menu action: " + selection);

if (sel.left(9) == "settings ")
if (sel.left(9) == "settings " || sel == "video_settings_general")
{
GetMythUI()->RemoveCurrentLocation();

Expand Down

0 comments on commit 34d0c86

Please sign in to comment.