diff options
| author | Juan Linietsky | 2018-05-04 18:11:28 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2018-05-04 18:11:28 -0300 |
| commit | af9a6202ebb1eda4f928d2d601162cf4b211752b (patch) | |
| tree | 932d68f9b01652c31556a70f82cb2a5ef3262484 /editor/plugins/canvas_item_editor_plugin.h | |
| parent | bf561c49468c9a4d5c47ba7bc53204a51270855f (diff) | |
| download | godot-af9a6202ebb1eda4f928d2d601162cf4b211752b.tar.gz godot-af9a6202ebb1eda4f928d2d601162cf4b211752b.tar.zst godot-af9a6202ebb1eda4f928d2d601162cf4b211752b.zip | |
Fix bone refresh logic, closes #18564
Diffstat (limited to '')
| -rw-r--r-- | editor/plugins/canvas_item_editor_plugin.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/plugins/canvas_item_editor_plugin.h b/editor/plugins/canvas_item_editor_plugin.h index a1ffdd1fb..eb3595cae 100644 --- a/editor/plugins/canvas_item_editor_plugin.h +++ b/editor/plugins/canvas_item_editor_plugin.h @@ -447,6 +447,11 @@ class CanvasItemEditor : public VBoxContainer { HSplitContainer *palette_split; VSplitContainer *bottom_split; + bool bone_list_dirty; + void _queue_update_bone_list(); + void _update_bone_list(); + void _tree_changed(Node *); + friend class CanvasItemEditorPlugin; protected: |
