1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-27 21:36:37 +02:00

core: allow to reset buffer property "input_multiline" to 0 even if there are lines in buffer (issue #1923)

This commit is contained in:
Sébastien Helleu
2023-05-14 10:41:24 +02:00
parent 128fbe0d5b
commit 537d18ede5
-13
View File
@@ -2102,19 +2102,6 @@ gui_buffer_set_input_multiline (struct t_gui_buffer *buffer,
if (!buffer)
return;
if (buffer->input_multiline
&& !input_multiline
&& buffer->own_lines->first_line)
{
gui_chat_printf (NULL,
_("%sBuffer property \"%s\" can not be disabled "
"if buffer contains lines (buffer: %s)"),
gui_chat_prefix[GUI_CHAT_PREFIX_ERROR],
"input_multiline",
buffer->full_name);
return;
}
buffer->input_multiline = (input_multiline) ? 1 : 0;
}