diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2023-01-11 01:14:58 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-11 01:14:58 +0100 |
| commit | 54688a753589a2104e31cf2265a254cad48715ba (patch) | |
| tree | 32a445e54e85419a27875b0095e4038b6cf4d5d8 /modules | |
| parent | b65c5bccfa787929acc265308a0714ecbb179359 (diff) | |
| parent | e6a4debede608808d2aac5985a1ad8415d5dc7cd (diff) | |
Merge pull request #71127 from reduz/drag-forward-to-callables
Change set_drag_forwarding() to use callables.
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/multiplayer/editor/replication_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/multiplayer/editor/replication_editor.cpp b/modules/multiplayer/editor/replication_editor.cpp index dbf1eecf0e..4ab41cfcb0 100644 --- a/modules/multiplayer/editor/replication_editor.cpp +++ b/modules/multiplayer/editor/replication_editor.cpp @@ -250,7 +250,7 @@ ReplicationEditor::ReplicationEditor() { tree->add_child(drop_label); drop_label->set_anchors_and_offsets_preset(Control::PRESET_FULL_RECT); - tree->set_drag_forwarding(this); + tree->set_drag_forwarding_compat(this); } void ReplicationEditor::_bind_methods() { |