From 814d08d77f5085a6ed54b6cd6f1aa5bd2fc8145e Mon Sep 17 00:00:00 2001 From: Naoto Kondo Date: Thu, 14 May 2026 10:44:44 +0900 Subject: [PATCH] Wayland: Fix incorrect fallback value for height in _xdg_popup_on_configure --- platform/linuxbsd/wayland/wayland_thread.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/linuxbsd/wayland/wayland_thread.cpp b/platform/linuxbsd/wayland/wayland_thread.cpp index 4e36df8826..4b44d45c68 100644 --- a/platform/linuxbsd/wayland/wayland_thread.cpp +++ b/platform/linuxbsd/wayland/wayland_thread.cpp @@ -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);