diff options
| author | Franklin Sobrinho | 2016-07-07 10:10:12 -0300 |
|---|---|---|
| committer | Franklin Sobrinho | 2016-07-07 10:10:12 -0300 |
| commit | 9be07081de26ff829586e8c81cc32f07b73777a8 (patch) | |
| tree | 64579901adb99119b9ed2f6c103d9be313644b9e /tools/editor/property_editor.cpp | |
| parent | 1b9433594ecc6c935c81e9030a6b52c7b56cb3a4 (diff) | |
| download | godot-9be07081de26ff829586e8c81cc32f07b73777a8.tar.gz godot-9be07081de26ff829586e8c81cc32f07b73777a8.tar.zst godot-9be07081de26ff829586e8c81cc32f07b73777a8.zip | |
Implement undo/redo for adding and deleting global properties
Diffstat (limited to 'tools/editor/property_editor.cpp')
| -rw-r--r-- | tools/editor/property_editor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/editor/property_editor.cpp b/tools/editor/property_editor.cpp index 4b3f245e4..766fe1368 100644 --- a/tools/editor/property_editor.cpp +++ b/tools/editor/property_editor.cpp @@ -4191,6 +4191,8 @@ public: void SectionedPropertyEditor::_bind_methods() { ObjectTypeDB::bind_method("_section_selected",&SectionedPropertyEditor::_section_selected); + + ObjectTypeDB::bind_method("update_category_list", &SectionedPropertyEditor::update_category_list); } void SectionedPropertyEditor::_section_selected(int p_which) { |
