From: Christoph Lohmann <20h@r-36.net> Date: Thu, 14 Jan 2016 22:19:03 +0000 (+0100) Subject: Height is height. X-Git-Url: https://git.danieliu.xyz/?p=st.git;a=commitdiff_plain;h=9031e228ce283cd4847832acf012a910f74ad1ed Height is height. --- diff --git a/st.c b/st.c index 427ec46..98622ec 100644 --- a/st.c +++ b/st.c @@ -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;