diff options
| author | Anselm R Garbe <[email protected]> | 2008-05-19 15:09:16 +0100 |
|---|---|---|
| committer | Anselm R Garbe <[email protected]> | 2008-05-19 15:09:16 +0100 |
| commit | 499315c22ceda5370ba51026b2e958cbd4ad4608 (patch) | |
| tree | 9938d5feac6f4992273942269f41876eea4a2237 | |
| parent | make it easier for the user, if Xinerama support is given, always use the scr... (diff) | |
| download | seiwm-499315c22ceda5370ba51026b2e958cbd4ad4608.tar.xz seiwm-499315c22ceda5370ba51026b2e958cbd4ad4608.zip | |
fix
| -rw-r--r-- | dwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1590,7 +1590,7 @@ updategeom(void) { if(XineramaIsActive(dpy)) { info = XineramaQueryScreens(dpy, &i); wx = info[0].x_org; - wy = showbar && topbar ? info[0].y_org + info[0].height + bh : info[0].y_org; + wy = showbar && topbar ? info[0].y_org + bh : info[0].y_org; ww = info[0].width; wh = showbar ? info[0].height - bh : info[0].height; XFree(info); |