Qt/HotkeyWindow: Always show debugging tab
This commit is contained in:
parent
327eb1336b
commit
0cc20e95fe
|
@ -304,16 +304,7 @@ void MappingWindow::SetMappingType(MappingWindow::Type type)
|
||||||
AddWidget(tr("General"), widget);
|
AddWidget(tr("General"), widget);
|
||||||
AddWidget(tr("TAS Tools"), new HotkeyTAS(this));
|
AddWidget(tr("TAS Tools"), new HotkeyTAS(this));
|
||||||
|
|
||||||
HotkeyDebugging* debugging_widget = new HotkeyDebugging(this);
|
AddWidget(tr("Debugging"), new HotkeyDebugging(this));
|
||||||
QWidget* debugging_widget_wrapper = GetWrappedWidget(debugging_widget, this, 150, 205);
|
|
||||||
connect(&Settings::Instance(), &Settings::DebugModeToggled, this, [=](bool enabled) {
|
|
||||||
if (enabled)
|
|
||||||
m_tab_widget->insertTab(2, debugging_widget_wrapper, tr("Debugging"));
|
|
||||||
else
|
|
||||||
m_tab_widget->removeTab(2);
|
|
||||||
});
|
|
||||||
if (Settings::Instance().IsDebugModeEnabled())
|
|
||||||
AddWidget(tr("Debugging"), debugging_widget);
|
|
||||||
|
|
||||||
AddWidget(tr("Wii and Wii Remote"), new HotkeyWii(this));
|
AddWidget(tr("Wii and Wii Remote"), new HotkeyWii(this));
|
||||||
AddWidget(tr("Graphics"), new HotkeyGraphics(this));
|
AddWidget(tr("Graphics"), new HotkeyGraphics(this));
|
||||||
|
|
Loading…
Reference in New Issue