Merge pull request #80219 from YeldhamDev/override_all_the_things
Improve `Window._get_contents_minimum_size()`'s code
This commit is contained in:
commit
725beaa7af
|
@ -1748,9 +1748,11 @@ Rect2i Window::fit_rect_in_parent(Rect2i p_rect, const Rect2i &p_parent_rect) co
|
||||||
|
|
||||||
Size2 Window::get_contents_minimum_size() const {
|
Size2 Window::get_contents_minimum_size() const {
|
||||||
ERR_READ_THREAD_GUARD_V(Size2());
|
ERR_READ_THREAD_GUARD_V(Size2());
|
||||||
Vector2 ms = _get_contents_minimum_size();
|
Vector2 ms;
|
||||||
GDVIRTUAL_CALL(_get_contents_minimum_size, ms);
|
if (GDVIRTUAL_CALL(_get_contents_minimum_size, ms)) {
|
||||||
return ms;
|
return ms;
|
||||||
|
}
|
||||||
|
return _get_contents_minimum_size();
|
||||||
}
|
}
|
||||||
|
|
||||||
Size2 Window::get_clamped_minimum_size() const {
|
Size2 Window::get_clamped_minimum_size() const {
|
||||||
|
|
Loading…
Reference in New Issue