Skip to content
Permalink
Browse files
Merge pull request #6869 from master0fdisaster/master0fdisaster-patch-1
Fix "Show Input Display"
  • Loading branch information
spycrab committed May 16, 2018
2 parents b203024 + 2a9283e commit 8ca1bf5
Showing 1 changed file with 1 addition and 1 deletion.
@@ -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"));

0 comments on commit 8ca1bf5

Please sign in to comment.