summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-09-24 11:13:44 +0200
committerGitHub <noreply@github.com>2019-09-24 11:13:44 +0200
commitcefa56ef1fb1f700035bce5c7f005dab65b9dc81 (patch)
tree046710316cefa8f36036ed537cd3135050c50a68
parent22f7af9a879ba1c48764fd398fd5023628760cba (diff)
parent7a27abae495872ab2008dcc44cbe627e810fd6a7 (diff)
Merge pull request #31935 from aole/Change-minimum-size-when-theme-changed
Change minimum size when theme changed
-rw-r--r--scene/gui/control.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp
index d39f017cad..f8f29632b3 100644
--- a/scene/gui/control.cpp
+++ b/scene/gui/control.cpp
@@ -645,6 +645,7 @@ void Control::_notification(int p_notification) {
} break;
case NOTIFICATION_THEME_CHANGED: {
+ minimum_size_changed();
update();
} break;
case NOTIFICATION_MODAL_CLOSE: {