GUI: allow docking editors by default

This commit is contained in:
tildearrow 2022-11-06 13:26:50 -05:00
parent 38696423ae
commit 9a47cdd997
2 changed files with 2 additions and 2 deletions

View file

@ -1259,7 +1259,7 @@ class FurnaceGUI {
wrapVertical(0),
macroView(0),
fmNames(0),
allowEditDocking(0),
allowEditDocking(1),
chipNames(0),
overflowHighlight(0),
partyTime(0),

View file

@ -2303,7 +2303,7 @@ void FurnaceGUI::syncSettings() {
settings.wrapVertical=e->getConfInt("wrapVertical",0);
settings.macroView=e->getConfInt("macroView",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.overflowHighlight=e->getConfInt("overflowHighlight",0);
settings.partyTime=e->getConfInt("partyTime",0);