mirror of
https://github.com/tmux/tmux.git
synced 2024-11-20 03:18:49 +00:00
Fix sense of aggressive-resize flag.
This commit is contained in:
parent
a870c255c4
commit
5cdd578906
2
resize.c
2
resize.c
@ -188,7 +188,7 @@ recalculate_sizes(void)
|
|||||||
type = options_get_number(w->options, "window-size");
|
type = options_get_number(w->options, "window-size");
|
||||||
if (type == WINDOW_SIZE_MANUAL)
|
if (type == WINDOW_SIZE_MANUAL)
|
||||||
continue;
|
continue;
|
||||||
current = !options_get_number(w->options, "aggressive-resize");
|
current = options_get_number(w->options, "aggressive-resize");
|
||||||
|
|
||||||
changed = 1;
|
changed = 1;
|
||||||
if (type == WINDOW_SIZE_LARGEST) {
|
if (type == WINDOW_SIZE_LARGEST) {
|
||||||
|
Loading…
Reference in New Issue
Block a user