diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2011-04-29 07:07:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2011-04-29 07:07:31 +0000 |
commit | 075816eb72f859177b81e027e2241d50dbadec7b (patch) | |
tree | 383ec17e54b7c83933ff61fc03e39b779607f91a | |
parent | eb288aae3223576ebe3f68f5faaa1c4fd02cb73b (diff) | |
download | rtmux-075816eb72f859177b81e027e2241d50dbadec7b.tar.gz rtmux-075816eb72f859177b81e027e2241d50dbadec7b.tar.bz2 rtmux-075816eb72f859177b81e027e2241d50dbadec7b.zip |
Only redraw the status line on command update, not the entire client
(big DOH).
-rw-r--r-- | status.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -642,7 +642,7 @@ status_job_callback(struct job *job) buf = xstrdup(line); so->out = buf; - server_redraw_client(c); + server_status_client(c); } /* Return winlink status line entry and adjust gc as necessary. */ |