From 36d91fd99927ebc6e78bb154647de591243f8196 Mon Sep 17 00:00:00 2001 From: Nova Date: Wed, 24 Jul 2024 17:25:26 -0400 Subject: [PATCH] fix(popups): unconstrain them --- src/wayland/xdg_shell.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/wayland/xdg_shell.rs b/src/wayland/xdg_shell.rs index 213ff7a..43fc36b 100644 --- a/src/wayland/xdg_shell.rs +++ b/src/wayland/xdg_shell.rs @@ -356,7 +356,12 @@ impl XdgBackend { Some(ChildInfo { id, parent, - geometry: positioner.get_geometry().into(), + geometry: positioner + .get_unconstrained_geometry(Rectangle { + loc: (-100000, -100000).into(), + size: (200000, 200000).into(), + }) + .into(), }) } }