GUI: user preset saving and prepare edit window

This commit is contained in:
tildearrow 2024-03-30 03:33:38 -05:00
parent b04ddaa20a
commit e7a638fdd5
5 changed files with 150 additions and 5 deletions

View file

@ -319,6 +319,9 @@ void FurnaceGUI::doAction(int what) {
case GUI_ACTION_WINDOW_CS_PLAYER:
nextWindow=GUI_WINDOW_CS_PLAYER;
break;
case GUI_ACTION_WINDOW_USER_PRESETS:
nextWindow=GUI_WINDOW_USER_PRESETS;
break;
case GUI_ACTION_COLLAPSE_WINDOW:
collapseWindow=true;
@ -424,6 +427,8 @@ void FurnaceGUI::doAction(int what) {
case GUI_WINDOW_CS_PLAYER:
csPlayerOpen=false;
break;
case GUI_WINDOW_USER_PRESETS:
userPresetsOpen=false;
default:
break;
}