1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 08:13:14 +02:00

core: hide message timestamp in bare display if timestamp is disabled in buffer (closes #129)

This commit is contained in:
Sébastien Helleu
2014-07-14 10:05:16 +02:00
parent b14ad26fd5
commit 32751e59ca
+2 -1
View File
@@ -1894,7 +1894,8 @@ gui_chat_get_bare_line (struct t_gui_line *line)
goto end;
str_time[0] = '\0';
if ((line->data->date > 0)
if (line->data->buffer->time_for_each_line
&& (line->data->date > 0)
&& CONFIG_STRING(config_look_bare_display_time_format)
&& CONFIG_STRING(config_look_bare_display_time_format)[0])
{