June 25, 2026
3:58 a.m.
Etaash Mathamsetty (@etaash.mathamsetty) commented about dlls/winewayland.drv/wayland_surface.c:
xdg_toplevel_handle_close };
+static void xdg_popup_handle_configure(void *private, struct xdg_popup *xdg_popup, + int32_t x, int32_t y, int32_t width, int32_t height) +{ + HWND hwnd = private; + struct wayland_win_data *data; + struct wayland_surface *surface; + + TRACE("hwnd=%p (%d,%d) %dx%d\n", hwnd, x, y, width, height);
I think should use wine_dbgstr_rect here just to be consistent -- https://gitlab.winehq.org/wine/wine/-/merge_requests/11248#note_144155