summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9f39696)
raw | patch | inline | side by side (parent: 9f39696)
author | Jonas Fonseca <fonseca@diku.dk> | |
Fri, 26 May 2006 19:12:43 +0000 (21:12 +0200) | ||
committer | Jonas Fonseca <fonseca@antimatter.localdomain> | |
Fri, 26 May 2006 19:12:43 +0000 (21:12 +0200) |
Don't refresh after a resize, since it causes the previous content to be
shortly displayed. We now simply resize and clear and waits for the first
read to start displaying the new content.
shortly displayed. We now simply resize and clear and waits for the first
read to start displaying the new content.
tig.c | patch | blob | history |
index 975e7dc9b6a789f67a7a05f3931f1a44a97e3522..36669b165d7c81c3b1db309d0edc80b0520522b2 100644 (file)
--- a/tig.c
+++ b/tig.c
wresize(view->win, view->height, view->width);
mvwin(view->win, offset, 0);
mvwin(view->title, offset + view->height, 0);
- wrefresh(view->win);
}
offset += view->height + 1;
}
if (prev && view != prev) {
- if (!backgrounded) {
+ if (split && !backgrounded) {
/* "Blur" the previous view. */
update_view_title(prev);
}