From 2a9283ee3df3118b9d2ad0d1297c97c3757b4537 Mon Sep 17 00:00:00 2001 From: master0fdisaster <38867833+master0fdisaster@users.noreply.github.com> Date: Wed, 16 May 2018 21:07:15 +0200 Subject: [PATCH] Fix "Show Input Display" --- Source/Core/DolphinQt2/MenuBar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt2/MenuBar.cpp b/Source/Core/DolphinQt2/MenuBar.cpp index d8726eca80..398ce15455 100644 --- a/Source/Core/DolphinQt2/MenuBar.cpp +++ b/Source/Core/DolphinQt2/MenuBar.cpp @@ -666,7 +666,7 @@ void MenuBar::AddMovieMenu() auto* input_display = movie_menu->addAction(tr("Show Input Display")); input_display->setCheckable(true); input_display->setChecked(SConfig::GetInstance().m_ShowInputDisplay); - connect(frame_counter, &QAction::toggled, + connect(input_display, &QAction::toggled, [](bool value) { SConfig::GetInstance().m_ShowInputDisplay = value; }); auto* system_clock = movie_menu->addAction(tr("Show System Clock"));