From 8716b9ed2fec0c119244a6905bac034267baa8ef Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Thu, 14 Sep 2006 01:08:48 +0200 Subject: [PATCH] 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. --- tig.c | 1 + 1 file changed, 1 insertion(+) 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; } -- 2.11.0