diff options
| author | Devin J. Pohly <djpohly+github@gmail.com> | 2021-05-23 00:28:49 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-23 00:28:49 -0500 | 
| commit | ce9f264919e0212fa64b843314cd9449e366d2f1 (patch) | |
| tree | 89201b80c8ee6b2abb2ea93675ba06c8d8a4d462 /dwl.c | |
| parent | 1b139a860dacbca8c4b3f8d24930b3f829534206 (diff) | |
| parent | 93a58abf2955aa01b7c148b85490d443ab017fb7 (diff) | |
Merge pull request #120 from djpohly/set-tiled-on-map
Wait until map to set window's tiled state
Diffstat (limited to 'dwl.c')
| -rw-r--r-- | dwl.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| @@ -885,10 +885,6 @@ createnotify(struct wl_listener *listener, void *data)  	c->surface.xdg = xdg_surface;  	c->bw = borderpx; -	/* Tell the client not to try anything fancy */ -	wlr_xdg_toplevel_set_tiled(c->surface.xdg, WLR_EDGE_TOP | -			WLR_EDGE_BOTTOM | WLR_EDGE_LEFT | WLR_EDGE_RIGHT); -  	LISTEN(&xdg_surface->surface->events.commit, &c->commit, commitnotify);  	LISTEN(&xdg_surface->events.map, &c->map, mapnotify);  	LISTEN(&xdg_surface->events.unmap, &c->unmap, unmapnotify); @@ -1308,6 +1304,10 @@ mapnotify(struct wl_listener *listener, void *data)  	c->geom.width += 2 * c->bw;  	c->geom.height += 2 * c->bw; +	/* Tell the client not to try anything fancy */ +	wlr_xdg_toplevel_set_tiled(c->surface.xdg, WLR_EDGE_TOP | +			WLR_EDGE_BOTTOM | WLR_EDGE_LEFT | WLR_EDGE_RIGHT); +  	/* Set initial monitor, tags, floating status, and focus */  	applyrules(c);  } | 
