fix(popups): unconstrain them

This commit is contained in:
Nova
2024-07-24 17:25:26 -04:00
parent b7191c3183
commit 36d91fd999

View File

@@ -356,7 +356,12 @@ impl XdgBackend {
Some(ChildInfo { Some(ChildInfo {
id, id,
parent, parent,
geometry: positioner.get_geometry().into(), geometry: positioner
.get_unconstrained_geometry(Rectangle {
loc: (-100000, -100000).into(),
size: (200000, 200000).into(),
})
.into(),
}) })
} }
} }