1
0
Fork 0
forked from wry/wry

window-management: restore ability to drag fullscreen windows

This commit is contained in:
Julian Orth 2026-03-17 18:54:17 +01:00
parent c7968c2ad9
commit 37b8bc95a5

View file

@ -930,6 +930,9 @@ impl ToplevelData {
}
pub fn is_root_container(&self) -> bool {
if not_matches!(self.kind, ToplevelType::Container) {
return false;
}
let Some(parent) = self.parent.get() else {
return false;
};