summaryrefslogtreecommitdiff
path: root/editor/plugins
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2021-12-06 14:02:34 +0100
committerkobewi <kobewi4e@gmail.com>2021-12-06 14:02:34 +0100
commitea7cc1dea93e0003182be2941d10124043c30edf (patch)
tree9319d2b2337d1ac0b156842c98a5aa2f104a347e /editor/plugins
parent608c9f820349ca13f017ea406c790d90729da837 (diff)
Rename minimum_size_changed() method
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));