Skip to content
Permalink
Browse files
Merge pull request #6725 from JosJuice/qt-cheat-manager-enable
DolphinQt2: Correct the condition for enabling Cheat Manager
  • Loading branch information
leoetlino committed Apr 30, 2018
2 parents ad836b9 + 1b830df commit 36a1b42
Showing 1 changed file with 1 addition and 1 deletion.
@@ -100,7 +100,7 @@ void MenuBar::OnEmulationStateChanged(Core::State state)
m_recording_play->setEnabled(!running);

// Tools
m_show_cheat_manager->setEnabled(Settings::Instance().GetCheatsEnabled());
m_show_cheat_manager->setEnabled(Settings::Instance().GetCheatsEnabled() && running);

// Symbols
m_symbols->setEnabled(running);

0 comments on commit 36a1b42

Please sign in to comment.