diff options
author | Christoph Lohmann <20h@r-36.net> | 2016-01-14 23:19:03 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2016-01-14 23:19:03 +0100 |
commit | 9031e228ce283cd4847832acf012a910f74ad1ed (patch) | |
tree | 5c7e54781261845a19dab13cb3348e28abe51124 | |
parent | 610723a58f1fbd3c5d911c853a8b94c315fc7c2a (diff) |
Height is height.
-rw-r--r-- | st.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3469,7 +3469,7 @@ xinit(void) if (xw.gm & XNegative) xw.l += DisplayWidth(xw.dpy, xw.scr) - xw.w - 2; if (xw.gm & YNegative) - xw.t += DisplayWidth(xw.dpy, xw.scr) - xw.h - 2; + xw.t += DisplayHeight(xw.dpy, xw.scr) - xw.h - 2; /* Events */ xw.attrs.background_pixel = dc.col[defaultbg].pixel; |