1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-31 18:41:20 +00:00

Fix CodeEdit hover word lookup

This commit is contained in:
kit
2025-05-28 13:24:59 -04:00
parent 2cde9292c3
commit ebf71cd4f3
7 changed files with 59 additions and 79 deletions

View File

@@ -2406,7 +2406,7 @@ void ScriptTextEditor::_text_edit_gui_input(const Ref<InputEvent> &ev) {
}
}
String word_at_pos = tx->get_word_at_pos(local_pos);
String word_at_pos = tx->get_lookup_word(mouse_line, mouse_column);
if (word_at_pos.is_empty()) {
word_at_pos = tx->get_word_under_caret(selection_clicked);
}