fix #339 - disable File/Create/New File if no workspace and project opened

This commit is contained in:
Vadim Lopatin 2017-10-05 13:46:04 +03:00
parent 9c50cab5de
commit 20fbdea809
1 changed files with 3 additions and 0 deletions

View File

@ -897,6 +897,9 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
else
a.state = ACTION_STATE_DISABLE;
return true;
case IDEActions.FileNew:
a.state = (currentWorkspace && currentWorkspace.startupProject) ? ACTION_STATE_ENABLED : ACTION_STATE_DISABLE;
return true;
case IDEActions.HelpAbout:
case StandardAction.OpenUrl:
// always enabled