diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-13 17:23:55 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-02-13 17:23:55 +0100 |
commit | 48e2f43ccf1704973d3e398918e1e990902aaa42 (patch) | |
tree | 1fdedc76d94c5358d3a95f062badaf0075271ead /editor/plugins/text_editor.cpp | |
parent | 937fa7b04a35343cb2fac907af666607b5b85b41 (diff) | |
parent | a6af442b05b38ed3baa716ec0a73862a024e141a (diff) | |
download | redot-engine-48e2f43ccf1704973d3e398918e1e990902aaa42.tar.gz |
Merge pull request #87479 from kitbdev/apply-ime
Fix TextEdit IME issues
Diffstat (limited to 'editor/plugins/text_editor.cpp')
-rw-r--r-- | editor/plugins/text_editor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp index a2364278b6..c9a0cbd2de 100644 --- a/editor/plugins/text_editor.cpp +++ b/editor/plugins/text_editor.cpp @@ -348,6 +348,7 @@ void TextEditor::set_find_replace_bar(FindReplaceBar *p_bar) { void TextEditor::_edit_option(int p_op) { CodeEdit *tx = code_editor->get_text_editor(); + tx->apply_ime(); switch (p_op) { case EDIT_UNDO: { @@ -502,6 +503,8 @@ void TextEditor::_text_edit_gui_input(const Ref<InputEvent> &ev) { if (mb->get_button_index() == MouseButton::RIGHT) { CodeEdit *tx = code_editor->get_text_editor(); + tx->apply_ime(); + Point2i pos = tx->get_line_column_at_pos(mb->get_global_position() - tx->get_global_position()); int row = pos.y; int col = pos.x; |