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 /editor/plugins/shader_editor_plugin.cpp | |
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 'editor/plugins/shader_editor_plugin.cpp')
-rw-r--r-- | editor/plugins/shader_editor_plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/shader_editor_plugin.cpp b/editor/plugins/shader_editor_plugin.cpp index da6a1ea0af..a822584619 100644 --- a/editor/plugins/shader_editor_plugin.cpp +++ b/editor/plugins/shader_editor_plugin.cpp @@ -451,7 +451,7 @@ ShaderEditorPlugin::ShaderEditorPlugin() { vb->add_child(shader_list); shader_list->connect("item_selected", callable_mp(this, &ShaderEditorPlugin::_shader_selected)); shader_list->connect("item_clicked", callable_mp(this, &ShaderEditorPlugin::_shader_list_clicked)); - shader_list->set_drag_forwarding(this); + shader_list->set_drag_forwarding_compat(this); main_split->add_child(vb); vb->set_custom_minimum_size(Size2(200, 300) * EDSCALE); |