diff options
author | Mounir Tohami <53877170+WhalesState@users.noreply.github.com> | 2024-02-13 18:04:31 +0000 |
---|---|---|
committer | Mounir Tohami <53877170+WhalesState@users.noreply.github.com> | 2024-02-13 18:04:31 +0000 |
commit | fdba051a40c36bb1528a2aaf840531f19ffa8615 (patch) | |
tree | 2ea04c61b210adcdfe645a855231433ac28363bc | |
parent | e92d55bbf417aa9f4592a863cb5b2c7ba0740e21 (diff) | |
download | redot-engine-fdba051a40c36bb1528a2aaf840531f19ffa8615.tar.gz |
Fix `TabBar` size when theme changes
-rw-r--r-- | scene/gui/tab_bar.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/tab_bar.cpp b/scene/gui/tab_bar.cpp index 3b5428d72b..bb787a742a 100644 --- a/scene/gui/tab_bar.cpp +++ b/scene/gui/tab_bar.cpp @@ -376,6 +376,7 @@ void TabBar::_notification(int p_what) { } queue_redraw(); + update_minimum_size(); [[fallthrough]]; } |