diff --git a/src/gui/gui.h b/src/gui/gui.h index c10aea38..64aa78c3 100644 --- a/src/gui/gui.h +++ b/src/gui/gui.h @@ -970,7 +970,7 @@ class FurnaceGUI { powerSave(1), absorbInsInput(0), eventDelay(0), - moveWindowTitle(0), + moveWindowTitle(1), hiddenSystems(0), horizontalDataView(0), noMultiSystem(0), diff --git a/src/gui/settings.cpp b/src/gui/settings.cpp index 52d14777..1c22755a 100644 --- a/src/gui/settings.cpp +++ b/src/gui/settings.cpp @@ -1845,7 +1845,7 @@ void FurnaceGUI::syncSettings() { settings.powerSave=e->getConfInt("powerSave",POWER_SAVE_DEFAULT); settings.absorbInsInput=e->getConfInt("absorbInsInput",0); settings.eventDelay=e->getConfInt("eventDelay",0); - settings.moveWindowTitle=e->getConfInt("moveWindowTitle",0); + settings.moveWindowTitle=e->getConfInt("moveWindowTitle",1); settings.hiddenSystems=e->getConfInt("hiddenSystems",0); settings.horizontalDataView=e->getConfInt("horizontalDataView",0); settings.noMultiSystem=e->getConfInt("noMultiSystem",0);