1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

Fix display bug with prefix_align_max for highlighted lines

This commit is contained in:
Sebastien Helleu
2008-07-06 11:40:23 +02:00
parent 9d911f6c11
commit 7907fee369
+5 -3
View File
@@ -674,9 +674,11 @@ gui_chat_display_time_and_prefix (struct t_gui_window *window,
{
gui_chat_display_word (window, line,
(prefix_highlighted) ? prefix_highlighted : line->prefix,
line->prefix +
gui_chat_string_real_pos (line->prefix,
length_allowed),
(prefix_highlighted) ?
prefix_highlighted + gui_chat_string_real_pos (prefix_highlighted,
length_allowed) :
line->prefix + gui_chat_string_real_pos (line->prefix,
length_allowed),
1, num_lines, count, lines_displayed,
simulate);
}