mirror of https://github.com/buggins/dlangide.git
open project file on double click or Enter key press instead of simple selection - close #176
This commit is contained in:
parent
20826288ca
commit
dcdbcc8c27
|
@ -364,8 +364,10 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
|
|
||||||
/// source file selected in workspace tree
|
/// source file selected in workspace tree
|
||||||
bool onSourceFileSelected(ProjectSourceFile file, bool activate) {
|
bool onSourceFileSelected(ProjectSourceFile file, bool activate) {
|
||||||
Log.d("onSourceFileSelected ", file.filename);
|
Log.d("onSourceFileSelected ", file.filename, " activate=", activate);
|
||||||
return openSourceFile(file.filename, file, activate);
|
if (activate)
|
||||||
|
return openSourceFile(file.filename, file, activate);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// returns global IDE settings
|
/// returns global IDE settings
|
||||||
|
|
Loading…
Reference in New Issue