From 4d05e8e751e957a724db28c99d64d7a00ba38217 Mon Sep 17 00:00:00 2001 From: nakst <> Date: Sun, 23 Jan 2022 15:06:14 +0000 Subject: [PATCH] ignore EsInstanceSetModified unless an editor --- desktop/api.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/desktop/api.cpp b/desktop/api.cpp index dec6431..ae3979a 100644 --- a/desktop/api.cpp +++ b/desktop/api.cpp @@ -1352,6 +1352,11 @@ EsMessage *EsMessageReceive() { } void EsInstanceSetModified(EsInstance *instance, bool modified) { + if (((APIInstance *) instance->_private)->instanceClass != ES_INSTANCE_CLASS_EDITOR) { + // The modified flag should only be used if this is an editor-style application. + return; + } + EsCommandSetEnabled(EsCommandByID(instance, ES_COMMAND_SAVE), modified); if (instance->window) {