diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-12-06 18:28:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 18:28:46 +0100 |
commit | 75ac048e4bc672b9dedf434d71465e6c2703eaec (patch) | |
tree | 1c21fb4dd562d9c58c420bd5fecf74c73cf5a611 /editor/editor_inspector.cpp | |
parent | 586c1997896fcdbb1c92d488425d7f4b4659b76d (diff) | |
parent | ea7cc1dea93e0003182be2941d10124043c30edf (diff) |
Merge pull request #55662 from KoBeWi/update_minimum_size_changed_to_update_minimum_size
Diffstat (limited to 'editor/editor_inspector.cpp')
-rw-r--r-- | editor/editor_inspector.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_inspector.cpp b/editor/editor_inspector.cpp index 81c9d996cb..d61be38014 100644 --- a/editor/editor_inspector.cpp +++ b/editor/editor_inspector.cpp @@ -1144,7 +1144,7 @@ void EditorInspectorSection::_test_unfold() { void EditorInspectorSection::_notification(int p_what) { switch (p_what) { case NOTIFICATION_THEME_CHANGED: { - minimum_size_changed(); + update_minimum_size(); } break; case NOTIFICATION_SORT_CHILDREN: { if (!vbox_added) { @@ -1995,7 +1995,7 @@ void EditorInspectorArray::_notification(int p_what) { prev_page_button->set_icon(get_theme_icon(SNAME("PagePrevious"), SNAME("EditorIcons"))); next_page_button->set_icon(get_theme_icon(SNAME("PageNext"), SNAME("EditorIcons"))); last_page_button->set_icon(get_theme_icon(SNAME("PageLast"), SNAME("EditorIcons"))); - minimum_size_changed(); + update_minimum_size(); } break; case NOTIFICATION_DRAG_BEGIN: { Dictionary dict = get_viewport()->gui_get_drag_data(); |