From ec1b38152189788a0282385343e43503648987cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Sun, 10 May 2020 10:43:07 +0200 Subject: [PATCH] core: set default size for input bar to 0 (automatic) (issue #1498) --- ChangeLog.adoc | 1 + src/gui/gui-bar.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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 */