From 976447f81b0594d9e6ff43772dab533b208a8bad Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Fri, 26 May 2006 22:09:50 +0200 Subject: [PATCH] When updating the title window, move the cursor to the end of line This way the cursor (hopefully) won't feel so jumpy. --- tig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tig.c b/tig.c index f744657..cba8c82 100644 --- a/tig.c +++ b/tig.c @@ -857,7 +857,7 @@ update_view_title(struct view *view) wprintw(view->title, " %lds", secs); } - + wmove(view->title, 0, view->width - 1); wrefresh(view->title); } -- 2.11.0