1
0
Fork 0
forked from wry/wry

Merge pull request #811 from mahkoh/jorth/fix-fullscreen-drag

window-management: restore ability to drag fullscreen windows
This commit is contained in:
mahkoh 2026-03-17 18:59:45 +01:00 committed by GitHub
commit dd10e1a585
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
};