diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-01-06 10:01:12 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-01-06 10:01:12 +0000 |
commit | 28b6237c623f507188a782a016563c78dd0ffb85 (patch) | |
tree | 1e21afcc6dc969bcdd1dc4576598649c58411b4b | |
parent | e5e4df7a2241298b7ea3ba77b5fe1fdef6df0e08 (diff) | |
parent | b2b94dcba73a62e2949fb98aee097dbaea658760 (diff) | |
download | rtmux-28b6237c623f507188a782a016563c78dd0ffb85.tar.gz rtmux-28b6237c623f507188a782a016563c78dd0ffb85.tar.bz2 rtmux-28b6237c623f507188a782a016563c78dd0ffb85.zip |
Merge branch 'obsd-master' into master
-rw-r--r-- | resize.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -178,7 +178,7 @@ clients_calculate_size(int type, int current, struct client *c, cw = NULL; /* Work out this client's size. */ - if (cw != NULL) { + if (cw != NULL && cw->sx != 0 && cw->sy != 0) { cx = cw->sx; cy = cw->sy; } else { |