X-Git-Url: https://git.danieliu.xyz/?a=blobdiff_plain;ds=sidebyside;f=dwm.c;h=188e445d208ce7aeb733b5916261da5e820a844e;hb=277155cf775369ad9645e68da59339acdc8f1117;hp=a5a9de25c2d825d0373bb030aea4821478f3bc52;hpb=b86c818599f8fecd42bcde564686b2489196d7ab;p=dwm.git diff --git a/dwm.c b/dwm.c index a5a9de2..188e445 100644 --- a/dwm.c +++ b/dwm.c @@ -310,8 +310,8 @@ buttonpress(XEvent *e) { click = ClkRootWin; if(ev->window == barwin) { - for(i = x = 0; ev->x >= x && ++i < LENGTH(tags); i++) - x += TEXTW(tags[i]); + i = x = 0; + do x += TEXTW(tags[i]); while(ev->x >= x && ++i < LENGTH(tags)); if(i < LENGTH(tags)) { click = ClkTagBar; arg.ui = 1 << i; @@ -929,7 +929,7 @@ manage(Window w, XWindowAttributes *wa) { XRaiseWindow(dpy, c->win); attach(c); attachstack(c); - XMoveResizeWindow(dpy, c->win, c->x, c->y, c->w, c->h); /* some windows require this */ + XMoveResizeWindow(dpy, c->win, c->x + 2 * sw, c->y, c->w, c->h); /* some windows require this */ XMapWindow(dpy, c->win); setclientstate(c, NormalState); arrange();