diff options
author | nicm <nicm> | 2015-02-06 15:09:34 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-02-06 15:09:34 +0000 |
commit | 83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b (patch) | |
tree | fcdbb4001aa49dc0a7bdeec4e00e5486b8e4dcef /screen-redraw.c | |
parent | 90bf7026f6bb83e0781ff2fc71c32ce973edce59 (diff) | |
download | rtmux-83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b.tar.gz rtmux-83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b.tar.bz2 rtmux-83a8e1fd20e3cbd6da38d0b4d6973cad0484c27b.zip |
Move pane border options to window options rather than session, from Marc Finet.
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 ef9e539d..c2b2ece6 100644 --- a/screen-redraw.c +++ b/screen-redraw.c @@ -275,7 +275,7 @@ void screen_redraw_draw_borders(struct client *c, int status, u_int top) { struct window *w = c->session->curw->window; - struct options *oo = &c->session->options; + struct options *oo = &w->options; struct tty *tty = &c->tty; struct window_pane *wp; struct grid_cell active_gc, other_gc, msg_gc; |