mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-05 20:35:06 +00:00
GUI: system file dialog on by default
in order to make a test build
This commit is contained in:
parent
e1eee0540e
commit
4ba6058b03
2 changed files with 2 additions and 2 deletions
|
@ -587,7 +587,7 @@ class FurnaceGUI {
|
||||||
insFocusesPattern(1),
|
insFocusesPattern(1),
|
||||||
stepOnInsert(0),
|
stepOnInsert(0),
|
||||||
unifiedDataView(0),
|
unifiedDataView(0),
|
||||||
sysFileDialog(0),
|
sysFileDialog(1),
|
||||||
maxUndoSteps(100),
|
maxUndoSteps(100),
|
||||||
mainFontPath(""),
|
mainFontPath(""),
|
||||||
patFontPath(""),
|
patFontPath(""),
|
||||||
|
|
|
@ -898,7 +898,7 @@ void FurnaceGUI::syncSettings() {
|
||||||
settings.insFocusesPattern=e->getConfInt("insFocusesPattern",1);
|
settings.insFocusesPattern=e->getConfInt("insFocusesPattern",1);
|
||||||
settings.stepOnInsert=e->getConfInt("stepOnInsert",0);
|
settings.stepOnInsert=e->getConfInt("stepOnInsert",0);
|
||||||
settings.unifiedDataView=e->getConfInt("unifiedDataView",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.mainFontSize,2,96);
|
||||||
clampSetting(settings.patFontSize,2,96);
|
clampSetting(settings.patFontSize,2,96);
|
||||||
|
|
Loading…
Reference in a new issue