diff options
author | Stivvo <stivvo01@gmail.com> | 2020-10-24 16:51:22 +0200 |
---|---|---|
committer | Guido Cella <guido@guidocella.xyz> | 2020-12-19 18:06:38 +0100 |
commit | 14ce0162136cd01064ae3bc650d9ffee36291de0 (patch) | |
tree | a93ff2c4b64c778c9098f4dacf7c4791fe228f78 /dwl.c | |
parent | 1e134fde972597e2f10c2bdf40d1356dad5b2cb7 (diff) |
Readme: achieve fullscreen + allow borderpx = 0
Diffstat (limited to 'dwl.c')
-rw-r--r-- | dwl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1073,6 +1073,7 @@ setfullscreen(Client *c, int fullscreen) #endif wlr_xdg_toplevel_set_fullscreen(c->surface.xdg, fullscreen); + // restore previous size instead of arrange to work with floating windows if (fullscreen) { c->prevx = c->geom.x; c->prevy = c->geom.y; @@ -1717,8 +1718,7 @@ renderclients(Monitor *m, struct timespec *now) ox = c->geom.x, oy = c->geom.y; wlr_output_layout_output_coords(output_layout, m->wlr_output, &ox, &oy); - - if (c->isfullscreen) + if (c->bw == 0) goto render; w = surface->current.width; |