~ruther/dwl

2d2c21664cb01b18d3543c45d64f574e406f5a3f — Devin J. Pohly 3 years ago a15cb1e + f587b2f
Merge pull request #181 from Armael/fix-client_set_tiled

fix client_set_tiled which is currently ignoring its "edges" argument
1 files changed, 1 insertions(+), 2 deletions(-)

M client.h
M client.h => client.h +1 -2
@@ 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 *

Do not follow this link