From: Jonas Fonseca Date: Wed, 13 Sep 2006 23:08:48 +0000 (+0200) Subject: Always draw the space between end of rev graph and start of commit title X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=8716b9ed2fec0c119244a6905bac034267baa8ef;p=tig.git Always draw the space between end of rev graph and start of commit title The rev graph may have been increased so the old title should be overwritten. --- diff --git a/tig.c b/tig.c index 14c1710..5a65d24 100644 --- a/tig.c +++ b/tig.c @@ -2916,6 +2916,7 @@ main_draw(struct view *view, struct line *line, unsigned int lineno, bool select for (i = 0; i < commit->graph_size; i++) waddch(view->win, commit->graph[i]); + waddch(view->win, ' '); col += commit->graph_size + 1; }