1
0
Fork 0
forked from wry/wry

tree: fix positioning of layer-shell surfaces

This commit is contained in:
Julian Orth 2024-04-20 21:01:36 +02:00
parent 1566873c25
commit 2b4173f10b

View file

@ -322,10 +322,11 @@ impl ZwlrLayerSurfaceV1 {
} else if anchor.contains(BOTTOM) { } else if anchor.contains(BOTTOM) {
y1 += opos.height() - height; y1 += opos.height() - height;
} }
let rect = Rect::new_sized(x1, y1, width, height).unwrap(); let o_rect = Rect::new_sized(x1, y1, width, height).unwrap();
self.output_pos.set(rect); let a_rect = o_rect.move_(opos.x1(), opos.y1());
self.pos.set(rect.move_(opos.x1(), opos.y1())); self.output_pos.set(o_rect);
self.surface.set_absolute_position(x1, y1); self.pos.set(a_rect);
self.surface.set_absolute_position(a_rect.x1(), a_rect.y1());
self.client.state.tree_changed(); self.client.state.tree_changed();
} }