gui/videosettings.cpp: fix video mode switch ask,

fix menu redraw after video mode switch
This commit is contained in:
[CST] Focus
2012-12-17 12:46:09 +04:00
parent c81c18f387
commit e30f93c776

View File

@@ -315,11 +315,11 @@ void CVideoSettings::setupVideoSystem(bool do_ask)
g_settings.video_Mode = prev_video_mode; g_settings.video_Mode = prev_video_mode;
videoDecoder->SetVideoSystem(g_settings.video_Mode); videoDecoder->SetVideoSystem(g_settings.video_Mode);
} }
}
else else
prev_video_mode = g_settings.video_Mode; prev_video_mode = g_settings.video_Mode;
} }
} }
}
bool CVideoSettings::changeNotify(const neutrino_locale_t OptionName, void * /* data */) bool CVideoSettings::changeNotify(const neutrino_locale_t OptionName, void * /* data */)
{ {
@@ -358,6 +358,7 @@ bool CVideoSettings::changeNotify(const neutrino_locale_t OptionName, void * /*
else if (ARE_LOCALES_EQUAL(OptionName, LOCALE_VIDEOMENU_VIDEOMODE)) else if (ARE_LOCALES_EQUAL(OptionName, LOCALE_VIDEOMENU_VIDEOMODE))
{ {
setupVideoSystem(true/*ask*/); setupVideoSystem(true/*ask*/);
return true;
} }
#if 0 #if 0
else if (ARE_LOCALES_EQUAL(OptionName, LOCALE_VIDEOMENU_CONTRAST)) else if (ARE_LOCALES_EQUAL(OptionName, LOCALE_VIDEOMENU_CONTRAST))