Always redraw requesting client on resize.

pull/1/head
Nicholas Marriott 2007-11-24 20:08:49 +00:00
parent 5ad9b31ac5
commit 08f8740da7
1 changed files with 4 additions and 1 deletions

View File

@ -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);
}