diff --git a/src/dlangide/ui/dsourceedit.d b/src/dlangide/ui/dsourceedit.d index 046dd16..a4734d9 100644 --- a/src/dlangide/ui/dsourceedit.d +++ b/src/dlangide/ui/dsourceedit.d @@ -462,6 +462,15 @@ class DSourceEdit : SourceEdit, EditableContentMarksChangeListener { else a.state = ACTION_STATE_DISABLE; return true; + case IDEActions.FileSaveAs: + a.state = ACTION_STATE_ENABLED; + return true; + case IDEActions.FileSave: + if (_content.modified) + a.state = ACTION_STATE_ENABLED; + else + a.state = ACTION_STATE_DISABLE; + return true; default: return super.handleActionStateRequest(a); } diff --git a/views/VERSION b/views/VERSION index 758f9c1..a6ee58c 100644 --- a/views/VERSION +++ b/views/VERSION @@ -1 +1 @@ -v0.7.71 \ No newline at end of file +v0.7.72 \ No newline at end of file