summaryrefslogtreecommitdiffstats
path: root/editor/plugins/text_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2023-01-11 01:14:58 +0100
committerGitHub <noreply@github.com>2023-01-11 01:14:58 +0100
commit54688a753589a2104e31cf2265a254cad48715ba (patch)
tree32a445e54e85419a27875b0095e4038b6cf4d5d8 /editor/plugins/text_editor.cpp
parentb65c5bccfa787929acc265308a0714ecbb179359 (diff)
parente6a4debede608808d2aac5985a1ad8415d5dc7cd (diff)
downloadredot-engine-54688a753589a2104e31cf2265a254cad48715ba.tar.gz
Merge pull request #71127 from reduz/drag-forward-to-callables
Change set_drag_forwarding() to use callables.
Diffstat (limited to 'editor/plugins/text_editor.cpp')
-rw-r--r--editor/plugins/text_editor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/text_editor.cpp b/editor/plugins/text_editor.cpp
index f3f0542b9b..ad5881c76f 100644
--- a/editor/plugins/text_editor.cpp
+++ b/editor/plugins/text_editor.cpp
@@ -650,7 +650,7 @@ TextEditor::TextEditor() {
goto_line_dialog = memnew(GotoLineDialog);
add_child(goto_line_dialog);
- code_editor->get_text_editor()->set_drag_forwarding(this);
+ code_editor->get_text_editor()->set_drag_forwarding_compat(this);
}
TextEditor::~TextEditor() {