From: Jonas Fonseca Date: Sat, 8 May 2010 01:46:42 +0000 (-0400) Subject: Only update status view at EOF for displayed views X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0ff67fd52c98c24653faeb7262adea299271b2e1;p=tig.git Only update status view at EOF for displayed views --- diff --git a/tig.c b/tig.c index 60932d4..35b0cfa 100644 --- a/tig.c +++ b/tig.c @@ -3376,7 +3376,8 @@ update_view(struct view *view) end_update(view, TRUE); } else if (io_eof(view->pipe)) { - report(""); + if (view_is_displayed(view)) + report(""); end_update(view, FALSE); }