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) {
|
||||
if (currentWorkspace is null)
|
||||
return;
|
||||
if (obj is null && _wsPanel !is null) {
|
||||
if (obj is null && _wsPanel !is null && !currentEditorSourceFile) {
|
||||
obj = _wsPanel.selectedProjectItem;
|
||||
if (!obj)
|
||||
obj = currentWorkspace.startupProject;
|
||||
}
|
||||
Project project;
|
||||
ProjectFolder folder;
|
||||
|
|
Loading…
Reference in New Issue