mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Qt: Fix widgets being visible when they shouldn't be
This commit is contained in:
@ -434,6 +434,13 @@ bool Settings::IsJITVisible() const
|
||||
return QSettings().value(QStringLiteral("debugger/showjit")).toBool();
|
||||
}
|
||||
|
||||
void Settings::RefreshWidgetVisibility()
|
||||
{
|
||||
emit DebugModeToggled(IsDebugModeEnabled());
|
||||
emit LogVisibilityChanged(IsLogVisible());
|
||||
emit LogConfigVisibilityChanged(IsLogConfigVisible());
|
||||
}
|
||||
|
||||
void Settings::SetDebugFont(QFont font)
|
||||
{
|
||||
if (GetDebugFont() != font)
|
||||
|
Reference in New Issue
Block a user