diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-21 15:35:53 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2007-11-21 15:35:53 +0000 |
commit | d5edaf988e7dd04488f3b7580802eb2eb131df48 (patch) | |
tree | fc6509ab47aefccc5a176f56dc6e11d25f64ccc4 /window.c | |
parent | e4f01009a3df6fa5ed231e628dcea08e7d2630e7 (diff) | |
download | rtmux-d5edaf988e7dd04488f3b7580802eb2eb131df48.tar.gz rtmux-d5edaf988e7dd04488f3b7580802eb2eb131df48.tar.bz2 rtmux-d5edaf988e7dd04488f3b7580802eb2eb131df48.zip |
Horizontal history/scrolling.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.28 2007-11-21 13:11:41 nicm Exp $ */ +/* $Id: window.c,v 1.29 2007-11-21 15:35:53 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -287,7 +287,7 @@ window_draw(struct window *w, struct buffer *b, u_int py, u_int ny) if (w->mode != NULL) w->mode->draw(w, b, py, ny); else - screen_draw(&w->screen, b, py, ny, 0); + screen_draw(&w->screen, b, py, ny, 0, 0); } void |