Only resize the display when actually required
authorJonas Fonseca <fonseca@diku.dk>
Sun, 21 May 2006 23:26:22 +0000 (01:26 +0200)
committerJonas Fonseca <fonseca@antimatter.localdomain>
Sun, 21 May 2006 23:26:22 +0000 (01:26 +0200)
tig.c

diff --git a/tig.c b/tig.c
index 4abb0bf..4ab9434 100644 (file)
--- a/tig.c
+++ b/tig.c
@@ -1285,7 +1285,8 @@ open_view(struct view *prev, enum request request, enum open_flags flags)
                display[current_view] = view;
        }
 
-       resize_display();
+       if (nviews == 1 || display[1] == NULL)
+               resize_display();
 
        if (split && prev->lineno - prev->offset >= prev->height) {
                /* Take the title line into account. */