From 97c011c529878f4ba42bcdff0270d9e4365cb5ba Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Fri, 29 Aug 2025 12:11:50 -0500 Subject: [PATCH] fixup! extremely aggressive scenedit autosave --- src/scenedit/scen.fileio.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scenedit/scen.fileio.cpp b/src/scenedit/scen.fileio.cpp index 3c7d1e6c9..efea8ebc0 100644 --- a/src/scenedit/scen.fileio.cpp +++ b/src/scenedit/scen.fileio.cpp @@ -1320,7 +1320,8 @@ void save_scenario(bool rename, bool autosave) { else fname += ".boes"; } toFile = toFile.parent_path()/fname; - scenario.scen_file = toFile; + if(!autosave) + scenario.scen_file = toFile; // Creating a new scenario, or using Save As, needs to update last_load_file so the new file will be launched: last_load_file = toFile.string();