How to change the right-click / cancel behavior from Settings Menu to Save Menu:
-
Look for Layout_Game in the Script Tab:

-
Replace it with this snippet:
{
"type": "ui.Panel",
"frame": [0, 0, Graphics.width, Graphics.height],
"updateBehavior": "continuous",
"formulas": [$ -> o.ui.enabled = $dataFields.tempSettings.menuAccess],
"actions": [
{ "name": "prepareSaveGame", "event": "onCancel", "params": { "snapshot": true } }
{ "name": "switchLayout", "event": "onCancel", "params": { "name": "saveMenuLayout", "savePrevious": true } }
]
},
