diff options
Diffstat (limited to '.repos')
-rw-r--r-- | .repos/dwm/dwm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.repos/dwm/dwm.c b/.repos/dwm/dwm.c index f08efb0..eb92650 100644 --- a/.repos/dwm/dwm.c +++ b/.repos/dwm/dwm.c @@ -1798,10 +1798,10 @@ showhide(Client *c) if (!c) return; if (ISVISIBLE(c)) { - if ((c->tags & SPTAGMASK) && c->isfloating) { - c->x = c->mon->wx + (c->mon->ww / 2 - WIDTH(c) / 2); - c->y = c->mon->wy + (c->mon->wh / 2 - HEIGHT(c) / 2); - } + /* if ((c->tags & SPTAGMASK) && c->isfloating) { */ + /* c->x = c->mon->wx + (c->mon->ww / 2 - WIDTH(c) / 2); */ + /* c->y = c->mon->wy + (c->mon->wh / 2 - HEIGHT(c) / 2); */ + /* } */ /* show clients top down */ XMoveWindow(dpy, c->win, c->x, c->y); if ((!c->mon->lt[c->mon->sellt]->arrange || c->isfloating) && !c->isfullscreen) |