diff options
author | Armaël Guéneau <armael.gueneau@ens-lyon.org> | 2022-01-08 17:41:45 +0100 |
---|---|---|
committer | Armaël Guéneau <armael.gueneau@ens-lyon.org> | 2022-01-08 17:41:45 +0100 |
commit | f587b2fd2c9f5967b9e8ca99fe70fbc80fb6c220 (patch) | |
tree | 2cdc42209cdd5ac06555304aa594de2056e3bb4b | |
parent | f85d8e79d09bb167f133fbaa40dd01bc3d3d26a3 (diff) |
fix client_set_tiled, which was ignoring its "edges" argument
-rw-r--r-- | client.h | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -156,8 +156,7 @@ client_set_tiled(Client *c, uint32_t edges) if (client_is_x11(c)) return; #endif - wlr_xdg_toplevel_set_tiled(c->surface.xdg, WLR_EDGE_TOP | - WLR_EDGE_BOTTOM | WLR_EDGE_LEFT | WLR_EDGE_RIGHT); + wlr_xdg_toplevel_set_tiled(c->surface.xdg, edges); } static inline struct wlr_surface * |