mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-14 11:33:14 +00:00
Fix output of $combine when used in combination with $head
This commit is contained in:
parent
7bf902f14a
commit
87a33551f7
@ -118,7 +118,7 @@ void print_combine(struct text_object *obj, char *p, struct information *cur)
|
|||||||
generate_text_internal(buf[i], max_user_text, *objsub, cur);
|
generate_text_internal(buf[i], max_user_text, *objsub, cur);
|
||||||
for(j=0; buf[i][j] != 0; j++) {
|
for(j=0; buf[i][j] != 0; j++) {
|
||||||
if(buf[i][j] == '\t') buf[i][j] = ' ';
|
if(buf[i][j] == '\t') buf[i][j] = ' ';
|
||||||
if(buf[i][j] == '\n') {
|
if(buf[i][j] == '\n' || buf[i][j] == 2) { //Some vars like $head use \002 instead of \n to separate lines
|
||||||
buf[i][j] = 0;
|
buf[i][j] = 0;
|
||||||
current[i]->row = strdup(buf[i]+nextstart);
|
current[i]->row = strdup(buf[i]+nextstart);
|
||||||
if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
|
if(i==0 && (long)strlen(current[i]->row) > longest) longest = (long)strlen(current[i]->row);
|
||||||
|
Loading…
Reference in New Issue
Block a user