GUI: prepare4buttonwhichconfinesselection2curorder

This commit is contained in:
tildearrow 2025-07-04 21:14:58 -05:00
parent bc15ae0812
commit 5928e57203
2 changed files with 4 additions and 0 deletions

View file

@ -8153,6 +8153,7 @@ void FurnaceGUI::syncState() {
#endif #endif
mobileUI=e->getConfBool("mobileUI",MOBILE_UI_DEFAULT); mobileUI=e->getConfBool("mobileUI",MOBILE_UI_DEFAULT);
edit=e->getConfBool("edit",false); edit=e->getConfBool("edit",false);
orderLock=e->getConfBool("orderLock",false);
followOrders=e->getConfBool("followOrders",true); followOrders=e->getConfBool("followOrders",true);
followPattern=e->getConfBool("followPattern",true); followPattern=e->getConfBool("followPattern",true);
noteInputPoly=e->getConfBool("noteInputPoly",true); noteInputPoly=e->getConfBool("noteInputPoly",true);
@ -8305,6 +8306,7 @@ void FurnaceGUI::commitState(DivConfig& conf) {
conf.set("fullScreen",fullScreen); conf.set("fullScreen",fullScreen);
conf.set("mobileUI",mobileUI); conf.set("mobileUI",mobileUI);
conf.set("edit",edit); conf.set("edit",edit);
conf.set("orderLock",orderLock);
conf.set("followOrders",followOrders); conf.set("followOrders",followOrders);
conf.set("followPattern",followPattern); conf.set("followPattern",followPattern);
conf.set("orderEditMode",orderEditMode); conf.set("orderEditMode",orderEditMode);
@ -8496,6 +8498,7 @@ FurnaceGUI::FurnaceGUI():
displayExportingCS(false), displayExportingCS(false),
quitNoSave(false), quitNoSave(false),
changeCoarse(false), changeCoarse(false),
orderLock(false),
mobileEdit(false), mobileEdit(false),
killGraphics(false), killGraphics(false),
safeMode(false), safeMode(false),

View file

@ -1681,6 +1681,7 @@ class FurnaceGUI {
bool displayExportingROM, displayExportingCS; bool displayExportingROM, displayExportingCS;
bool quitNoSave; bool quitNoSave;
bool changeCoarse; bool changeCoarse;
bool orderLock;
bool mobileEdit; bool mobileEdit;
bool killGraphics; bool killGraphics;
bool safeMode; bool safeMode;