diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-05-10 10:43:07 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-05-10 10:43:07 +0200 |
commit | ec1b38152189788a0282385343e43503648987cd (patch) | |
tree | 290c2e3962ef6c69cfc80a2ec4eb48b1cb603877 | |
parent | b2d1f37782fad795855eb6380a439919c160158d (diff) | |
download | weechat-ec1b38152189788a0282385343e43503648987cd.zip |
core: set default size for input bar to 0 (automatic) (issue #1498)
-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 */ |