summaryrefslogtreecommitdiffstats
path: root/server-msg.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2007-11-24 20:08:49 +0000
committerNicholas Marriott <nicholas.marriott@gmail.com>2007-11-24 20:08:49 +0000
commit08f8740da73e1800cce0f65682b6ee08d8b4132e (patch)
treed5b99b71a209201938bce7eeec5632dd98955e79 /server-msg.c
parent5ad9b31ac5555d46832e1896feba92d1c41409d0 (diff)
Always redraw requesting client on resize.
Diffstat (limited to 'server-msg.c')
-rw-r--r--server-msg.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/server-msg.c b/server-msg.c
index dc0cefc7..471f1f10 100644
--- a/server-msg.c
+++ b/server-msg.c
@@ -1,4 +1,4 @@
-/* $Id: server-msg.c,v 1.36 2007-11-21 22:40:55 nicm Exp $ */
+/* $Id: server-msg.c,v 1.37 2007-11-24 20:08:49 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -230,6 +230,9 @@ server_msg_fn_resize(struct hdr *hdr, struct client *c)
recalculate_sizes();
+ /* Always redraw this client. */
+ server_redraw_client(c);
+
return (0);
}