st
simple terminal
git clone https://9o.is/git/st.git
commit d0cb03a910175ad17030e1de7b0b8907fb7d11f0 parent 9fc9fcf4a155098bda9810c0fd75eaf515ab9223 Author: Christoph Lohmann <20h@r-36.net> Date: Thu, 14 Jan 2016 23:19:03 +0100 Height is height. Diffstat:
| M | st.c | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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;