mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 22:21:18 +00:00
Change set_drag_forwarding() to use callables.
* This solution is much cleaner than the one in 3.x thanks to the use of callables. * Works without issues in any language (no need to worry about camel or snake case). * Editor code uses a compatibility function (too much work to redo). Fixes #59899
This commit is contained in:
parent
f5f7d11ac4
commit
e6a4debede
30 changed files with 86 additions and 113 deletions
|
|
@ -1408,7 +1408,7 @@ SpriteFramesEditor::SpriteFramesEditor() {
|
|||
frame_list->set_max_columns(0);
|
||||
frame_list->set_icon_mode(ItemList::ICON_MODE_TOP);
|
||||
frame_list->set_max_text_lines(2);
|
||||
frame_list->set_drag_forwarding(this);
|
||||
frame_list->set_drag_forwarding_compat(this);
|
||||
frame_list->connect("gui_input", callable_mp(this, &SpriteFramesEditor::_frame_list_gui_input));
|
||||
frame_list->connect("item_selected", callable_mp(this, &SpriteFramesEditor::_frame_list_item_selected));
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue