additional fix for #257

This commit is contained in:
Vadim Lopatin 2017-09-08 15:29:07 +03:00
parent c66ae7521e
commit 5c72e879c1
1 changed files with 4 additions and 1 deletions

View File

@ -1233,11 +1233,14 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
} }
/// add new file to project
void addProjectItem(Object obj) { void addProjectItem(Object obj) {
if (currentWorkspace is null) if (currentWorkspace is null)
return; return;
if (obj is null && _wsPanel !is null) { if (obj is null && _wsPanel !is null && !currentEditorSourceFile) {
obj = _wsPanel.selectedProjectItem; obj = _wsPanel.selectedProjectItem;
if (!obj)
obj = currentWorkspace.startupProject;
} }
Project project; Project project;
ProjectFolder folder; ProjectFolder folder;