mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-08 21:53:31 +01: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:
parent
f2292467ad
commit
a65aaccd59
@ -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)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user