1
0
Mirror von https://github.com/tmux/tmux.git synchronisiert 2025-11-25 11:36:08 +00:00

Always redraw requesting client on resize.

Dieser Commit ist enthalten in:
Nicholas Marriott
2007-11-24 20:08:49 +00:00
Ursprung 5ad9b31ac5
Commit 08f8740da7

Datei anzeigen

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