mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Merge pull request #72991 from Sauermann/fix-popup-window-minsize
Fix that `popup_centered` didn't take the window's size into consideration
This commit is contained in:
commit
1a5f28df20
@ -1462,7 +1462,7 @@ void Window::popup_centered(const Size2i &p_minsize) {
|
||||
}
|
||||
|
||||
Rect2i popup_rect;
|
||||
popup_rect.size = _clamp_window_size(p_minsize);
|
||||
popup_rect.size = _clamp_window_size(get_size().max(p_minsize));
|
||||
|
||||
if (parent_rect != Rect2()) {
|
||||
popup_rect.position = parent_rect.position + (parent_rect.size - popup_rect.size) / 2;
|
||||
|
Loading…
x
Reference in New Issue
Block a user