deps: Update smithay

Fixes misbehaving floating windows
This commit is contained in:
Victoria Brekenfeld 2022-07-07 19:45:04 +02:00
parent 397ddaab1e
commit 1fb49824f9
10 changed files with 87 additions and 23 deletions

View file

@ -14,7 +14,7 @@ use smithay::{
},
utils::{IsAlive, Rectangle},
wayland::{
seat::{PointerGrabStartData, Seat},
seat::{Focus, PointerGrabStartData, Seat},
Serial,
},
};
@ -272,7 +272,7 @@ impl TilingLayout {
ratio: ratio.clone(),
};
pointer.set_grab(grab, serial, 0);
pointer.set_grab(grab, serial, Focus::Clear);
}
return;
}
@ -590,6 +590,7 @@ impl TilingLayout {
space.map_window(
&window,
(geo.loc.x + inner, geo.loc.y + inner),
None,
false,
);
}