mirror of
https://github.com/tmux/tmux.git
synced 2024-12-04 19:58:48 +00:00
Do not count client if no window.
This commit is contained in:
parent
ddc67152a5
commit
fb52921a86
2
resize.c
2
resize.c
@ -136,7 +136,7 @@ clients_calculate_size(int type, int current, struct client *c,
|
||||
* For latest, count the number of clients with this window. We only
|
||||
* care if there is more than one.
|
||||
*/
|
||||
if (type == WINDOW_SIZE_LATEST)
|
||||
if (type == WINDOW_SIZE_LATEST && w != NULL)
|
||||
n = clients_with_window(w);
|
||||
|
||||
/* Loop over the clients and work out the size. */
|
||||
|
Loading…
Reference in New Issue
Block a user