1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-18 02:55:12 +00:00

Oops, fix multiline stuff.

This commit is contained in:
Brenden Matthews 2009-07-18 13:49:52 -06:00
parent 670e9a0eb1
commit 9c4ebef376

View File

@ -6884,7 +6884,7 @@ int draw_each_line_inner(char *s, int special_index, const int last_special_appl
draw_string(s); draw_string(s);
cur_y += font_descent(); cur_y += font_descent();
if (recurse && *recurse) { if (recurse && *recurse) {
special_index = draw_each_line_inner(recurse, special_index, last_special_applied); special_index = draw_each_line_inner(recurse, special_index, last_special_needed);
*(recurse - 1) = SECRIT_MULTILINE_CHAR; *(recurse - 1) = SECRIT_MULTILINE_CHAR;
} }
return special_index; return special_index;