Always draw the space between end of rev graph and start of commit title
authorJonas Fonseca <fonseca@diku.dk>
Wed, 13 Sep 2006 23:08:48 +0000 (01:08 +0200)
committerJonas Fonseca <fonseca@antimatter.localdomain>
Wed, 13 Sep 2006 23:08:48 +0000 (01:08 +0200)
The rev graph may have been increased so the old title should be
overwritten.

tig.c

diff --git a/tig.c b/tig.c
index 14c1710..5a65d24 100644 (file)
--- 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;
        }