fix 499315c2
Anselm R Garbe · 2008-05-19 15:09 1 file(s) · +1 −1
dwm.c +1 −1
1590 1590
	if(XineramaIsActive(dpy)) {
1591 1591
		info = XineramaQueryScreens(dpy, &i);
1592 1592
		wx = info[0].x_org;
1593 -
		wy = showbar && topbar ? info[0].y_org + info[0].height + bh : info[0].y_org;
1593 +
		wy = showbar && topbar ? info[0].y_org + bh : info[0].y_org;
1594 1594
		ww = info[0].width;
1595 1595
		wh = showbar ? info[0].height - bh : info[0].height;
1596 1596
		XFree(info);