From c79e5e8081111516c457545f0647e987d5ceea26 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Tue, 10 May 2022 16:19:49 -0500 Subject: [PATCH] GUI: window movement only by clicking on title bar on by default now --- src/gui/gui.h | 2 +- src/gui/settings.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/gui.h b/src/gui/gui.h index c10aea384..64aa78c36 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 52d14777a..1c22755a8 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);