mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 21:15:11 +00:00
GUI: allow docking editors by default
This commit is contained in:
parent
38696423ae
commit
9a47cdd997
2 changed files with 2 additions and 2 deletions
|
@ -1259,7 +1259,7 @@ class FurnaceGUI {
|
||||||
wrapVertical(0),
|
wrapVertical(0),
|
||||||
macroView(0),
|
macroView(0),
|
||||||
fmNames(0),
|
fmNames(0),
|
||||||
allowEditDocking(0),
|
allowEditDocking(1),
|
||||||
chipNames(0),
|
chipNames(0),
|
||||||
overflowHighlight(0),
|
overflowHighlight(0),
|
||||||
partyTime(0),
|
partyTime(0),
|
||||||
|
|
|
@ -2303,7 +2303,7 @@ void FurnaceGUI::syncSettings() {
|
||||||
settings.wrapVertical=e->getConfInt("wrapVertical",0);
|
settings.wrapVertical=e->getConfInt("wrapVertical",0);
|
||||||
settings.macroView=e->getConfInt("macroView",0);
|
settings.macroView=e->getConfInt("macroView",0);
|
||||||
settings.fmNames=e->getConfInt("fmNames",0);
|
settings.fmNames=e->getConfInt("fmNames",0);
|
||||||
settings.allowEditDocking=e->getConfInt("allowEditDocking",0);
|
settings.allowEditDocking=e->getConfInt("allowEditDocking",1);
|
||||||
settings.chipNames=e->getConfInt("chipNames",0);
|
settings.chipNames=e->getConfInt("chipNames",0);
|
||||||
settings.overflowHighlight=e->getConfInt("overflowHighlight",0);
|
settings.overflowHighlight=e->getConfInt("overflowHighlight",0);
|
||||||
settings.partyTime=e->getConfInt("partyTime",0);
|
settings.partyTime=e->getConfInt("partyTime",0);
|
||||||
|
|
Loading…
Reference in a new issue