mirror of https://github.com/buggins/dlangide.git
Fix #187.
This commit is contained in:
parent
af8babdf1b
commit
6ea4ce9f5a
src/dlangide/ui
|
@ -981,8 +981,10 @@ class IDEFrame : AppFrame, ProgramExecutionStatusListener, BreakpointListChangeL
|
||||||
dlg.show();
|
dlg.show();
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.GoToDefinition:
|
case IDEActions.GoToDefinition:
|
||||||
Log.d("Trying to go to definition.");
|
if (currentEditor) {
|
||||||
currentEditor.editorTool.goToDefinition(currentEditor(), currentEditor.caretPos);
|
Log.d("Trying to go to definition.");
|
||||||
|
currentEditor.editorTool.goToDefinition(currentEditor(), currentEditor.caretPos);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
case IDEActions.GetDocComments:
|
case IDEActions.GetDocComments:
|
||||||
Log.d("Trying to get doc comments.");
|
Log.d("Trying to get doc comments.");
|
||||||
|
|
Loading…
Reference in New Issue