From 846ea37565a37517656544aa20357ba5e22f5134 Mon Sep 17 00:00:00 2001 From: James Johnson Date: Sun, 3 Dec 2017 03:09:36 -0500 Subject: [PATCH] quick fix for dmledit --- examples/dmledit/src/dmledit.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dmledit/src/dmledit.d b/examples/dmledit/src/dmledit.d index 32a85381..eb496e27 100644 --- a/examples/dmledit/src/dmledit.d +++ b/examples/dmledit/src/dmledit.d @@ -259,10 +259,10 @@ class EditFrame : AppFrame { a.state = ACTION_STATE_ENABLED; return true; case IDEActions.FileSave: - if (_content.modified) + if (_editor.content.modified) a.state = ACTION_STATE_ENABLED; else - a.state = ACTION_STATE_DISABLED; + a.state = ACTION_STATE_DISABLE; return true; default: return super.handleActionStateRequest(a);