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

Remove unneeded space after last column on bar with filling "columns"

This commit is contained in:
Sebastien Helleu
2008-12-16 10:52:15 +01:00
parent 0bdef1013a
commit 3c71e9c990
+5 -2
View File
@@ -490,8 +490,11 @@ gui_bar_window_content_get_with_filling (struct t_gui_bar_window *bar_window)
content[index_content++] = ' ';
}
}
strcpy (content + index_content, space_with_reinit_color);
index_content += length_reinit_color;
if (j < columns - 1)
{
strcpy (content + index_content, space_with_reinit_color);
index_content += length_reinit_color;
}
}
content[index_content++] = '\n';
}