mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-07 08:39:00 +00:00
Qt/ToolBar: Fix checkbox and actual visibility not being in sync
This commit is contained in:
parent
0cd46f4d21
commit
dd6ac93ad0
2 changed files with 2 additions and 1 deletions
|
@ -399,7 +399,7 @@ void Settings::SetToolBarVisible(bool visible)
|
|||
|
||||
bool Settings::IsToolBarVisible() const
|
||||
{
|
||||
return GetQSettings().value(QStringLiteral("toolbar/visible")).toBool();
|
||||
return GetQSettings().value(QStringLiteral("toolbar/visible"), true).toBool();
|
||||
}
|
||||
|
||||
void Settings::SetWidgetsLocked(bool locked)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue