From cb9269df41c66cbd871fc9bc73657e736bee6a0d Mon Sep 17 00:00:00 2001 From: Stivvo Date: Wed, 16 Sep 2020 09:20:07 +0200 Subject: [PATCH] use m->m (fullscreen on top of layers) --- dwl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dwl.c b/dwl.c index c051b5f..ec8c7db 100644 --- a/dwl.c +++ b/dwl.c @@ -1095,7 +1095,7 @@ setfullscreen(Client *c, int fullscreen) c->prevy = c->geom.y; c->prevheight = c->geom.height; c->prevwidth = c->geom.width; - resize(c, c->mon->w.x, c->mon->w.y, c->mon->w.width, c->mon->w.height, 0); + resize(c, c->mon->m.x, c->mon->m.y, c->mon->m.width, c->mon->m.height, 0); } else { resize(c, c->prevx, c->prevy, c->prevwidth, c->prevheight, 0); }