diff options
| author | Juan Linietsky | 2016-07-10 13:04:08 -0300 |
|---|---|---|
| committer | GitHub | 2016-07-10 13:04:08 -0300 |
| commit | 06eef730c0f220ae16fade6e69ed9b81edbb0c23 (patch) | |
| tree | dc47087fd34f4b59edd333c3655273156ac67989 /tools/editor/property_editor.cpp | |
| parent | e74d71a5bfccec42945836c82521469ec664b6dc (diff) | |
| parent | 9be07081de26ff829586e8c81cc32f07b73777a8 (diff) | |
| download | godot-06eef730c0f220ae16fade6e69ed9b81edbb0c23.tar.gz godot-06eef730c0f220ae16fade6e69ed9b81edbb0c23.tar.zst godot-06eef730c0f220ae16fade6e69ed9b81edbb0c23.zip | |
Merge pull request #5584 from TheHX/project-settings
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 7816dd9bc..ceb62d5ff 100644 --- a/tools/editor/property_editor.cpp +++ b/tools/editor/property_editor.cpp @@ -4187,6 +4187,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) { |
