From 3b11280c202ed4db7cedab7a2ddd4a5f364b4fd0 Mon Sep 17 00:00:00 2001 From: TryTwo Date: Sat, 20 Sep 2025 15:04:07 -0700 Subject: Movie Window: Move customization options from Menu Bar to OSD pane, but add options to toggle the window and to open the OSD pane. Add new setting to show/hide the Movie Window. --- Source/Core/VideoCommon/OnScreenUI.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'Source/Core/VideoCommon/OnScreenUI.cpp') diff --git a/Source/Core/VideoCommon/OnScreenUI.cpp b/Source/Core/VideoCommon/OnScreenUI.cpp index 4689bb6321..e741691417 100644 --- a/Source/Core/VideoCommon/OnScreenUI.cpp +++ b/Source/Core/VideoCommon/OnScreenUI.cpp @@ -255,11 +255,7 @@ void OnScreenUI::DrawImGui() // Create On-Screen-Messages void OnScreenUI::DrawDebugText() { - const bool show_movie_window = - Config::Get(Config::MAIN_SHOW_FRAME_COUNT) || Config::Get(Config::MAIN_SHOW_LAG) || - Config::Get(Config::MAIN_MOVIE_SHOW_INPUT_DISPLAY) || - Config::Get(Config::MAIN_MOVIE_SHOW_RTC) || Config::Get(Config::MAIN_MOVIE_SHOW_RERECORD); - if (show_movie_window) + if (Config::Get(Config::MAIN_MOVIE_SHOW_OSD)) { // Position under the FPS display. ImGui::SetNextWindowPos( -- cgit v1.2.3