summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2024-01-23 18:57:21 -0500
committerLioncash <mai.iam2048@gmail.com>2024-01-23 18:57:23 -0500
commita65aaccd5905ba88dad2df6721ea4dd3bf3c354b (patch)
tree957ee0d3f0548eb085dd9f8e668ee37b74caaf34 /Source/Core
parentf2292467ad54da9e577aaea2cb3fadc232ee7ebe (diff)
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.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinQt/MenuBar.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/MenuBar.cpp b/Source/Core/DolphinQt/MenuBar.cpp
index fbfc83ef46..063c5d8de9 100644
--- a/Source/Core/DolphinQt/MenuBar.cpp
+++ b/Source/Core/DolphinQt/MenuBar.cpp
@@ -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)
{