diff options
author | nicm <nicm> | 2019-11-14 16:23:23 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-11-14 16:23:23 +0000 |
commit | 1f966c495ca021858fdba00f6619d024ecbc41d4 (patch) | |
tree | 8abe1122aee1f82546b95be3afaf3a0810b9dc9e | |
parent | 16b77194182569cad8f34a4cf1fa494409900236 (diff) | |
download | rtmux-1f966c495ca021858fdba00f6619d024ecbc41d4.tar.gz rtmux-1f966c495ca021858fdba00f6619d024ecbc41d4.tar.bz2 rtmux-1f966c495ca021858fdba00f6619d024ecbc41d4.zip |
Change window-size default from smallest to latest.
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index cbe5197d..6e2db178 100644 --- a/options-table.c +++ b/options-table.c @@ -730,7 +730,7 @@ const struct options_table_entry options_table[] = { .type = OPTIONS_TABLE_CHOICE, .scope = OPTIONS_TABLE_WINDOW, .choices = options_table_window_size_list, - .default_num = WINDOW_SIZE_SMALLEST + .default_num = WINDOW_SIZE_LATEST }, { .name = "window-style", |