aboutsummaryrefslogtreecommitdiff
path: root/window-client.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2017-11-02 22:01:20 +0000
committerThomas Adam <thomas@xteddy.org>2017-11-02 22:01:20 +0000
commitc9ec33d0d018daacce90faf96156bf69098c210b (patch)
treed87004d3cc42424c800262840c6f2d1a2b779ca3 /window-client.c
parent8c29f7413bd41e0f7afb1b53dc73128dfd42fb6f (diff)
parent8d37f699ad2406ad96080b0cee211142dbcb33cb (diff)
downloadrtmux-c9ec33d0d018daacce90faf96156bf69098c210b.tar.gz
rtmux-c9ec33d0d018daacce90faf96156bf69098c210b.tar.bz2
rtmux-c9ec33d0d018daacce90faf96156bf69098c210b.zip
Merge branch 'obsd-master'
Diffstat (limited to 'window-client.c')
-rw-r--r--window-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/window-client.c b/window-client.c
index 4b57aa23..fc5b55e7 100644
--- a/window-client.c
+++ b/window-client.c
@@ -235,9 +235,9 @@ window_client_draw(__unused void *modedata, void *itemdata, u_int sx, u_int sy)
screen_write_cursormove(&ctx, 0, sy - 1);
if (c->old_status != NULL)
- screen_write_copy(&ctx, c->old_status, 0, 0, sx, 1, NULL, NULL);
+ screen_write_fast_copy(&ctx, c->old_status, 0, 0, sx, 1);
else
- screen_write_copy(&ctx, &c->status, 0, 0, sx, 1, NULL, NULL);
+ screen_write_fast_copy(&ctx, &c->status, 0, 0, sx, 1);
screen_write_stop(&ctx);
return (&s);