dwm.c
changeset 1269 ce94428739ab
parent 1268 fc7dd1b14093
child 1270 262ee84a2fdb
equal deleted inserted replaced
1268:fc7dd1b14093 1269:ce94428739ab
  1552 	XineramaScreenInfo *info = NULL;
  1552 	XineramaScreenInfo *info = NULL;
  1553 
  1553 
  1554 	/* window area geometry */
  1554 	/* window area geometry */
  1555 	if(XineramaIsActive(dpy)) {
  1555 	if(XineramaIsActive(dpy)) {
  1556 		info = XineramaQueryScreens(dpy, &i);
  1556 		info = XineramaQueryScreens(dpy, &i);
  1557 		wx = info[0].x_org;
  1557 		wx = info[xidx].x_org;
  1558 		wy = showbar && topbar ? info[0].y_org + bh : info[0].y_org;
  1558 		wy = showbar && topbar ?  info[xidx].y_org + bh : info[xidx].y_org;
  1559 		ww = info[0].width;
  1559 		ww = info[xidx].width;
  1560 		wh = showbar ? info[0].height - bh : info[0].height;
  1560 		wh = showbar ? info[xidx].height - bh : info[xidx].height;
  1561 		XFree(info);
  1561 		XFree(info);
  1562 	}
  1562 	}
  1563 	else
  1563 	else
  1564 #endif
  1564 #endif
  1565 	{
  1565 	{