Skip to content

Commit

Permalink
Fix regression of some default settings
Browse files Browse the repository at this point in the history
The regression was introduced in #3820.
  • Loading branch information
Sawuare authored Oct 2, 2019
1 parent ca88714 commit 9f0baab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/SetupDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ SetupDialog::SetupDialog(ConfigTabs tab_to_open) :
m_vstAlwaysOnTop(ConfigManager::inst()->value(
"ui", "vstalwaysontop").toInt()),
m_syncVSTPlugins(ConfigManager::inst()->value(
"ui", "syncvstplugins").toInt()),
"ui", "syncvstplugins", "1").toInt()),
m_disableAutoQuit(ConfigManager::inst()->value(
"ui", "disableautoquit").toInt()),
"ui", "disableautoquit", "1").toInt()),
m_NaNHandler(ConfigManager::inst()->value(
"app", "nanhandler", "1").toInt()),
m_hqAudioDev(ConfigManager::inst()->value(
Expand Down

0 comments on commit 9f0baab

Please sign in to comment.