1
0
Fork 0
forked from wry/wry

autocommit 2022-02-20 15:48:24 CET

This commit is contained in:
Julian Orth 2022-02-20 15:48:24 +01:00
parent 26fab1e3e2
commit a2f078cb66
6 changed files with 72 additions and 50 deletions

View file

@ -175,13 +175,13 @@ impl XdgSurface {
}
pub fn move_focus(&self, seat: &Rc<WlSeatGlobal>, direction: Direction) {
if let Some(ext)= self.ext.get() {
if let Some(ext) = self.ext.get() {
ext.move_focus(seat, direction);
}
}
pub fn move_self(&self, direction: Direction) {
if let Some(ext)= self.ext.get() {
if let Some(ext) = self.ext.get() {
ext.move_self(direction);
}
}