diff options
author | nicm <nicm> | 2018-02-05 08:21:54 +0000 |
---|---|---|
committer | nicm <nicm> | 2018-02-05 08:21:54 +0000 |
commit | 7f4513ec34862805b06b2ff776785a36fdfec796 (patch) | |
tree | f9647c1b56edf455f82298de9c88ca6a63c99da1 /screen-redraw.c | |
parent | 0817132f97bdcf475cd8641630e10133ebd8207d (diff) | |
download | rtmux-7f4513ec34862805b06b2ff776785a36fdfec796.tar.gz rtmux-7f4513ec34862805b06b2ff776785a36fdfec796.tar.bz2 rtmux-7f4513ec34862805b06b2ff776785a36fdfec796.zip |
Add struct status_line to hold status line members of struct client, not
used yet but will be soon. From Thomas Adam.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r-- | screen-redraw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c index 1083642d..df966aff 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -563,7 +563,7 @@ screen_redraw_draw_status(struct client *c, u_int lines, u_int top) else y = tty->sy - lines; for (i = 0; i < lines; i++) - tty_draw_line(tty, NULL, &c->status, i, 0, y); + tty_draw_line(tty, NULL, &c->status.status, i, 0, y); } /* Draw number on a pane. */ |