You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-22 15:06:45 +00:00
Wayland: Fix window fitting in single-window mode
We disabled window fitting in multi-window mode as it was broken due to the limited data but it should still be enabled for embedded windows.
This commit is contained in:
@@ -1994,7 +1994,7 @@ void Window::popup(const Rect2i &p_screen_rect) {
|
||||
// Update window size to calculate the actual window size based on contents minimum size and minimum size.
|
||||
_update_window_size();
|
||||
|
||||
bool should_fit = !DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_SELF_FITTING_WINDOWS);
|
||||
bool should_fit = is_embedded() || !DisplayServer::get_singleton()->has_feature(DisplayServer::FEATURE_SELF_FITTING_WINDOWS);
|
||||
|
||||
if (p_screen_rect != Rect2i()) {
|
||||
set_position(p_screen_rect.position);
|
||||
|
||||
Reference in New Issue
Block a user