summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2024-04-18 21:12:34 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2024-04-18 21:12:34 +0800
commitb2d5a06828ec48ad06f29897204510876a6dc776 (patch)
tree5411d63727e73fce1f390885b4fe989d0ac8d1d9
parent2543d192c3f74640393f245e48fdf70e241dbe37 (diff)
downloadredot-engine-b2d5a06828ec48ad06f29897204510876a6dc776.tar.gz
Fix buttons offset to the right when dialog is at minsize
-rw-r--r--scene/gui/dialogs.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/scene/gui/dialogs.cpp b/scene/gui/dialogs.cpp
index e481b78715..4d2080dda2 100644
--- a/scene/gui/dialogs.cpp
+++ b/scene/gui/dialogs.cpp
@@ -264,12 +264,6 @@ Size2 AcceptDialog::_get_contents_minimum_size() const {
content_minsize = child_minsize.max(content_minsize);
}
- // Then we take the background panel as it provides the offsets,
- // which are always added to the minimum size.
- if (theme_cache.panel_style.is_valid()) {
- content_minsize += theme_cache.panel_style->get_minimum_size();
- }
-
// Then we add buttons. Horizontally we're interested in whichever
// value is the biggest. Vertically buttons add to the overall size.
Size2 buttons_minsize = buttons_hbox->get_combined_minimum_size();
@@ -278,6 +272,12 @@ Size2 AcceptDialog::_get_contents_minimum_size() const {
// Plus there is a separation size added on top.
content_minsize.y += theme_cache.buttons_separation;
+ // Then we take the background panel as it provides the offsets,
+ // which are always added to the minimum size.
+ if (theme_cache.panel_style.is_valid()) {
+ content_minsize += theme_cache.panel_style->get_minimum_size();
+ }
+
return content_minsize;
}