mirror of https://github.com/buggins/dlangide.git
fix #272
This commit is contained in:
parent
856f6d09ab
commit
5af9060332
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
v0.7.71
|
||||
v0.7.72
|
Loading…
Reference in New Issue