diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-09-24 11:13:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-24 11:13:44 +0200 |
commit | cefa56ef1fb1f700035bce5c7f005dab65b9dc81 (patch) | |
tree | 046710316cefa8f36036ed537cd3135050c50a68 | |
parent | 22f7af9a879ba1c48764fd398fd5023628760cba (diff) | |
parent | 7a27abae495872ab2008dcc44cbe627e810fd6a7 (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.cpp | 1 |
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: { |