Skip to content

Commit 9f0baab

Browse files
authored
Fix regression of some default settings
The regression was introduced in #3820.
1 parent ca88714 commit 9f0baab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui/SetupDialog.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ SetupDialog::SetupDialog(ConfigTabs tab_to_open) :
125125
m_vstAlwaysOnTop(ConfigManager::inst()->value(
126126
"ui", "vstalwaysontop").toInt()),
127127
m_syncVSTPlugins(ConfigManager::inst()->value(
128-
"ui", "syncvstplugins").toInt()),
128+
"ui", "syncvstplugins", "1").toInt()),
129129
m_disableAutoQuit(ConfigManager::inst()->value(
130-
"ui", "disableautoquit").toInt()),
130+
"ui", "disableautoquit", "1").toInt()),
131131
m_NaNHandler(ConfigManager::inst()->value(
132132
"app", "nanhandler", "1").toInt()),
133133
m_hqAudioDev(ConfigManager::inst()->value(

0 commit comments

Comments
 (0)