mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
DolphinQt/MenuBar: Hide assembler option if debug UI is disabled
Fixes a little visual inconsistency in the UI, where the assembler would always be shown, but all other debug-related utilities would be hidden.
This commit is contained in:
@ -185,6 +185,7 @@ void MenuBar::OnDebugModeToggled(bool enabled)
|
||||
m_show_memory->setVisible(enabled);
|
||||
m_show_network->setVisible(enabled);
|
||||
m_show_jit->setVisible(enabled);
|
||||
m_show_assembler->setVisible(enabled);
|
||||
|
||||
if (enabled)
|
||||
{
|
||||
|
Reference in New Issue
Block a user