summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2022-10-23 15:47:22 +0200
committerkobewi <kobewi4e@gmail.com>2022-10-23 15:47:22 +0200
commitc5c30898af2389767ae999e4a15d797b53983b16 (patch)
tree74f7d84b1366604fbb904dbed9b033e27286f2cf
parent79bad6ab7f67809645480b1f35d13502e8ff92be (diff)
Uncomment drag forwarding in CreateDialog
-rw-r--r--editor/create_dialog.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/editor/create_dialog.cpp b/editor/create_dialog.cpp
index 7a4e58c6f9..3be30782bd 100644
--- a/editor/create_dialog.cpp
+++ b/editor/create_dialog.cpp
@@ -752,8 +752,7 @@ CreateDialog::CreateDialog() {
favorites->connect("cell_selected", callable_mp(this, &CreateDialog::_favorite_selected));
favorites->connect("item_activated", callable_mp(this, &CreateDialog::_favorite_activated));
favorites->add_theme_constant_override("draw_guides", 1);
- // Cannot forward drag data to a non control, must be fixed.
- //favorites->set_drag_forwarding(this);
+ favorites->set_drag_forwarding(this);
fav_vb->add_margin_child(TTR("Favorites:"), favorites, true);
VBoxContainer *rec_vb = memnew(VBoxContainer);