summaryrefslogtreecommitdiffstats
path: root/scene/gui/control.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-03-24 01:14:51 +0100
committerRémi Verschelde <rverschelde@gmail.com>2024-03-24 01:14:51 +0100
commitcd4e4c0fccfdbfe04d91617a1bc6c4785dd6a1ec (patch)
treed675bc1f5eaaf3a69a6eb9c2bb7ec254e90f3b10 /scene/gui/control.cpp
parent33cca7c65c5c3b02ffdbecfd916e27fa6bc41eb5 (diff)
parent79ba22a73f238ebd110fc5f3744c3c12a9a59475 (diff)
downloadredot-engine-cd4e4c0fccfdbfe04d91617a1bc6c4785dd6a1ec.tar.gz
Merge pull request #89111 from AThousandShips/vec_use
Use `Vector*` component-wise `min/max/clamp` functions where applicable
Diffstat (limited to 'scene/gui/control.cpp')
-rw-r--r--scene/gui/control.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp
index 08edc65d7f..62bb14459d 100644
--- a/scene/gui/control.cpp
+++ b/scene/gui/control.cpp
@@ -1653,8 +1653,7 @@ Size2 Control::get_custom_minimum_size() const {
void Control::_update_minimum_size_cache() {
Size2 minsize = get_minimum_size();
- minsize.x = MAX(minsize.x, data.custom_minimum_size.x);
- minsize.y = MAX(minsize.y, data.custom_minimum_size.y);
+ minsize = minsize.max(data.custom_minimum_size);
data.minimum_size_cache = minsize;
data.minimum_size_valid = true;