diff options
author | Thomas Adam <thomas@xteddy.org> | 2018-02-05 10:02:31 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2018-02-05 10:02:31 +0000 |
commit | 88711e885eeab58fe372ce5aa64282f7557c3620 (patch) | |
tree | 1f91e6d3f63e84ead5bf00f0a6d9b116dbf27a5c /window-client.c | |
parent | 2d5101621b972a8e32d1ec29b544da46e88f319f (diff) | |
parent | 7f4513ec34862805b06b2ff776785a36fdfec796 (diff) | |
download | rtmux-88711e885eeab58fe372ce5aa64282f7557c3620.tar.gz rtmux-88711e885eeab58fe372ce5aa64282f7557c3620.tar.bz2 rtmux-88711e885eeab58fe372ce5aa64282f7557c3620.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'window-client.c')
-rw-r--r-- | window-client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/window-client.c b/window-client.c index 76e536ec..aae9e0b4 100644 --- a/window-client.c +++ b/window-client.c @@ -229,10 +229,10 @@ window_client_draw(__unused void *modedata, void *itemdata, screen_write_hline(ctx, sx, 0, 0); screen_write_cursormove(ctx, cx, cy + sy - 1); - if (c->old_status != NULL) - screen_write_fast_copy(ctx, c->old_status, 0, 0, sx, 1); + if (c->status.old_status != NULL) + screen_write_fast_copy(ctx, c->status.old_status, 0, 0, sx, 1); else - screen_write_fast_copy(ctx, &c->status, 0, 0, sx, 1); + screen_write_fast_copy(ctx, &c->status.status, 0, 0, sx, 1); } static struct screen * |