diff options
-rw-r--r-- | ChangeLog.adoc | 1 | ||||
-rw-r--r-- | src/gui/gui-bar.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog.adoc b/ChangeLog.adoc index c53087b2e..f731bd239 100644 --- a/ChangeLog.adoc +++ b/ChangeLog.adoc @@ -20,6 +20,7 @@ https://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes] New features:: + * core: set default size for input bar to 0 (automatic) (issue #1498) * core: add default key kbd:[Alt+Enter] to insert a newline (issue #1498) * core: add flag "input_multiline" in buffer (issue #984, issue #1063) * core: add a scalable WeeChat logo (SVG) (issue #1454, issue #1456) diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c index 3c1404a57..7367de28a 100644 --- a/src/gui/gui-bar.c +++ b/src/gui/gui-bar.c @@ -1873,7 +1873,7 @@ gui_bar_create_default_input () "bottom", /* position */ "horizontal", /* filling_top_bottom */ "vertical", /* filling_left_right */ - "1", /* size */ + "0", /* size */ "0", /* size_max */ "default", /* color fg */ "cyan", /* color delim */ |