mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
Merge pull request #6725 from JosJuice/qt-cheat-manager-enable
DolphinQt2: Correct the condition for enabling Cheat Manager
This commit is contained in:
commit
36a1b42877
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ void MenuBar::OnEmulationStateChanged(Core::State state)
|
||||||
m_recording_play->setEnabled(!running);
|
m_recording_play->setEnabled(!running);
|
||||||
|
|
||||||
// Tools
|
// Tools
|
||||||
m_show_cheat_manager->setEnabled(Settings::Instance().GetCheatsEnabled());
|
m_show_cheat_manager->setEnabled(Settings::Instance().GetCheatsEnabled() && running);
|
||||||
|
|
||||||
// Symbols
|
// Symbols
|
||||||
m_symbols->setEnabled(running);
|
m_symbols->setEnabled(running);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue