summaryrefslogtreecommitdiff
path: root/editor/plugins
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2021-12-06 18:28:46 +0100
committerGitHub <noreply@github.com>2021-12-06 18:28:46 +0100
commit75ac048e4bc672b9dedf434d71465e6c2703eaec (patch)
tree1c21fb4dd562d9c58c420bd5fecf74c73cf5a611 /editor/plugins
parent586c1997896fcdbb1c92d488425d7f4b4659b76d (diff)
parentea7cc1dea93e0003182be2941d10124043c30edf (diff)
Merge pull request #55662 from KoBeWi/update_minimum_size_changed_to_update_minimum_size
Diffstat (limited to 'editor/plugins')
-rw-r--r--editor/plugins/theme_editor_preview.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/plugins/theme_editor_preview.cpp b/editor/plugins/theme_editor_preview.cpp
index 86b0fc0eaf..7340c17b6e 100644
--- a/editor/plugins/theme_editor_preview.cpp
+++ b/editor/plugins/theme_editor_preview.cpp
@@ -47,7 +47,7 @@ void ThemeEditorPreview::add_preview_overlay(Control *p_overlay) {
void ThemeEditorPreview::_propagate_redraw(Control *p_at) {
p_at->notification(NOTIFICATION_THEME_CHANGED);
- p_at->minimum_size_changed();
+ p_at->update_minimum_size();
p_at->update();
for (int i = 0; i < p_at->get_child_count(); i++) {
Control *a = Object::cast_to<Control>(p_at->get_child(i));