diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-05-05 10:02:36 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-05-05 10:02:36 +0000 |
commit | 4846af8f95c80493144d1af104ad2fa658a256c6 (patch) | |
tree | 62fa08ba177696843a5189b3e30af5d3a984ab1f | |
parent | 341f67e8276d520c504ca995c89e089e9b1aca02 (diff) | |
download | rtmux-4846af8f95c80493144d1af104ad2fa658a256c6.tar.gz rtmux-4846af8f95c80493144d1af104ad2fa658a256c6.tar.bz2 rtmux-4846af8f95c80493144d1af104ad2fa658a256c6.zip |
Sync OpenBSD patchset 899:
Only redraw the status line on command update, not the entire client
(big DOH).
-rw-r--r-- | status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.159 2011-04-25 20:35:22 tcunha Exp $ */ +/* $Id: status.c,v 1.160 2011-05-05 10:02:36 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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. */ |