fix goToDefinition cursor setting if file is newly opened - close #108

This commit is contained in:
Vadim Lopatin 2016-01-26 09:41:46 +03:00
parent 4bac204a25
commit c05067002c
2 changed files with 5 additions and 2 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "~>0.7.49",
"dlangui": "~>0.7.50",
"dcd": "~>0.7.5"
},

View File

@ -45,7 +45,10 @@ class DEditorTool : EditorTool
Log.d("Declaration is in current file. Jumping to it.");
} else {
//Must open file first to get the content for finding the correct caret position.
_frame.openSourceFile(to!string(fileName));
if (!_frame.openSourceFile(to!string(fileName)))
return false;
if (_frame.currentEditor.parent)
_frame.currentEditor.parent.layout(_frame.currentEditor.parent.pos);
content = toUTF8(_frame.currentEditor.text);
}
auto target = to!int(output.offset);