From d4f3bc596d3e5e5bfec054cb66afe22f9a615910 Mon Sep 17 00:00:00 2001 From: "Filip H.F. \"FiXato\" Slagter" Date: Thu, 27 May 2021 18:00:25 +0200 Subject: [PATCH] clarify (max) bar size to be in chars/lines (max) bar size was described to be in chars, though this only applies to the left/right bars. This change clarifies that top/bottom bars would have their size defined in lines. --- src/gui/gui-bar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c index 83e78bb3b..ad890404e 100644 --- a/src/gui/gui-bar.c +++ b/src/gui/gui-bar.c @@ -1438,7 +1438,7 @@ gui_bar_create_option (const char *bar_name, int index_option, const char *value ptr_option = config_file_new_option ( weechat_config_file, weechat_config_section_bar, option_name, "integer", - N_("bar size in chars (0 = auto size)"), + N_("bar size in chars (left/right bars) or lines (top/bottom bars) (0 = auto size)"), NULL, 0, INT_MAX, value, NULL, 0, &gui_bar_config_check_size, NULL, NULL, &gui_bar_config_change_size, NULL, NULL, @@ -1448,7 +1448,7 @@ gui_bar_create_option (const char *bar_name, int index_option, const char *value ptr_option = config_file_new_option ( weechat_config_file, weechat_config_section_bar, option_name, "integer", - N_("max bar size in chars (0 = no limit)"), + N_("max bar size in chars (left/right bars) or lines (top/bottom bars) (0 = no limit)"), NULL, 0, INT_MAX, value, NULL, 0, NULL, NULL, NULL, &gui_bar_config_change_size_max, NULL, NULL,