From: Jonas Fonseca Date: Sat, 24 Jan 2009 12:22:40 +0000 (+0100) Subject: Also call end_update for views with custom open function X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=0879fa98ad7fe921274fb3bdf91b59e4ba60ef56;p=tig.git Also call end_update for views with custom open function Broken by 49dc4030694e22b7f141bfb13565783985c48b77 --- diff --git a/tig.c b/tig.c index e24939f..16dba6b 100644 --- a/tig.c +++ b/tig.c @@ -2925,6 +2925,8 @@ open_view(struct view *prev, enum request request, enum open_flags flags) resize_display(); if (view->ops->open) { + if (view->pipe) + end_update(view, TRUE); if (!view->ops->open(view)) { report("Failed to load %s view", view->name); return;