about summary refs log tree commit diff stats
path: root/dwm.c
diff options
context:
space:
mode:
authorAnselm R Garbe <garbeam@gmail.com>2008-05-19 15:09:16 +0100
committerAnselm R Garbe <garbeam@gmail.com>2008-05-19 15:09:16 +0100
commit499315c22ceda5370ba51026b2e958cbd4ad4608 (patch)
tree9938d5feac6f4992273942269f41876eea4a2237 /dwm.c
parentf22d047d4139ef889e95aabd0103e11357193e5a (diff)
downloaddwm-499315c22ceda5370ba51026b2e958cbd4ad4608.tar.gz
fix
Diffstat (limited to 'dwm.c')
-rw-r--r--dwm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dwm.c b/dwm.c
index 4a8c2a9..507084c 100644
--- a/dwm.c
+++ b/dwm.c
@@ -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);
3'>143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217