diff options
author | nicm <nicm> | 2019-03-04 09:29:52 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-03-04 09:29:52 +0000 |
commit | 5cdd578906985c7abb9d1bba39384e201dada10e (patch) | |
tree | 8665fe7328f2622f5d210b200deaad8dc27c1429 /resize.c | |
parent | a870c255c48afc15a79c3ea5b0a205485fb949f6 (diff) | |
download | rtmux-5cdd578906985c7abb9d1bba39384e201dada10e.tar.gz rtmux-5cdd578906985c7abb9d1bba39384e201dada10e.tar.bz2 rtmux-5cdd578906985c7abb9d1bba39384e201dada10e.zip |
Fix sense of aggressive-resize flag.
Diffstat (limited to 'resize.c')
-rw-r--r-- | resize.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -188,7 +188,7 @@ recalculate_sizes(void) type = options_get_number(w->options, "window-size"); if (type == WINDOW_SIZE_MANUAL) continue; - current = !options_get_number(w->options, "aggressive-resize"); + current = options_get_number(w->options, "aggressive-resize"); changed = 1; if (type == WINDOW_SIZE_LARGEST) { |