Merge pull request #119448 from buresu/fix-wayland

Wayland: Fix incorrect fallback value for height in _xdg_popup_on_configure
This commit is contained in:
Thaddeus Crews
2026-05-15 15:42:05 -05:00
+1 -1
View File
@@ -1550,7 +1550,7 @@ void WaylandThread::_xdg_popup_on_configure(void *data, struct xdg_popup *xdg_po
}
if (height == 0) {
height = ws->rect.size.width;
height = ws->rect.size.height;
}
window_state_update_size(ws, width, height);