1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #106919 from kitbdev/fix-codeedit-hover-word-lookup

Fix CodeEdit hover word lookup
This commit is contained in:
Thaddeus Crews
2025-06-18 18:13:43 -05:00
7 changed files with 59 additions and 79 deletions

View File

@@ -2410,7 +2410,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);
}