dwm.c
changeset 1216 b24cafa2cdf9
parent 1215 840fd59e3141
child 1218 0f2bce9f15a5
equal deleted inserted replaced
1215:840fd59e3141 1216:b24cafa2cdf9
  1588 
  1588 
  1589 	/* window area geometry */
  1589 	/* window area geometry */
  1590 	if(XineramaIsActive(dpy)) {
  1590 	if(XineramaIsActive(dpy)) {
  1591 		info = XineramaQueryScreens(dpy, &i);
  1591 		info = XineramaQueryScreens(dpy, &i);
  1592 		wx = info[0].x_org;
  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 		ww = info[0].width;
  1594 		ww = info[0].width;
  1595 		wh = showbar ? info[0].height - bh : info[0].height;
  1595 		wh = showbar ? info[0].height - bh : info[0].height;
  1596 		XFree(info);
  1596 		XFree(info);
  1597 	}
  1597 	}
  1598 	else
  1598 	else