diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:14:51 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:14:51 +0100 |
commit | cd4e4c0fccfdbfe04d91617a1bc6c4785dd6a1ec (patch) | |
tree | d675bc1f5eaaf3a69a6eb9c2bb7ec254e90f3b10 /scene/gui/control.cpp | |
parent | 33cca7c65c5c3b02ffdbecfd916e27fa6bc41eb5 (diff) | |
parent | 79ba22a73f238ebd110fc5f3744c3c12a9a59475 (diff) | |
download | redot-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.cpp | 3 |
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; |