Fix hover symbol content position

This commit is contained in:
geequlim 2020-02-12 17:58:19 +08:00
parent 14d0e3e642
commit 03d2d01082

View file

@ -321,6 +321,8 @@ Variant GDScriptTextDocument::hover(const Dictionary &p_params) {
lsp::Hover hover;
hover.contents = symbol->render();
hover.range.start = params.position;
hover.range.end = params.position;
return hover.to_json();
} else if (GDScriptLanguageProtocol::get_singleton()->is_smart_resolve_enabled()) {