mirror of https://github.com/buggins/dlangide.git
additional fix for #257
This commit is contained in:
parent
c66ae7521e
commit
5c72e879c1
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue