GUI: system file dialog on by default

in order to make a test build
This commit is contained in:
tildearrow 2022-03-13 23:24:57 -05:00
parent e1eee0540e
commit 4ba6058b03
2 changed files with 2 additions and 2 deletions

View File

@ -587,7 +587,7 @@ class FurnaceGUI {
insFocusesPattern(1),
stepOnInsert(0),
unifiedDataView(0),
sysFileDialog(0),
sysFileDialog(1),
maxUndoSteps(100),
mainFontPath(""),
patFontPath(""),

View File

@ -898,7 +898,7 @@ void FurnaceGUI::syncSettings() {
settings.insFocusesPattern=e->getConfInt("insFocusesPattern",1);
settings.stepOnInsert=e->getConfInt("stepOnInsert",0);
settings.unifiedDataView=e->getConfInt("unifiedDataView",0);
settings.sysFileDialog=e->getConfInt("sysFileDialog",0);
settings.sysFileDialog=e->getConfInt("sysFileDialog",1);
clampSetting(settings.mainFontSize,2,96);
clampSetting(settings.patFontSize,2,96);