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) {