summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 21be28f)
raw | patch | inline | side by side (parent: 21be28f)
author | Jonas Fonseca <fonseca@diku.dk> | |
Mon, 18 Sep 2006 13:57:10 +0000 (15:57 +0200) | ||
committer | Jonas Fonseca <fonseca@antimatter.localdomain> | |
Mon, 18 Sep 2006 13:57:10 +0000 (15:57 +0200) |
tig.c | patch | blob | history |
index 70bf7f37f252154a9766dff094eeba4c10387d27..1f92114dc0710c9b2660deda4a7daa6601eaa460 100644 (file)
--- a/tig.c
+++ b/tig.c
else
wbkgdset(view->title, get_line_attr(LINE_TITLE_BLUR));
- werase(view->title);
mvwaddnstr(view->title, 0, 0, buf, bufpos);
+ wclrtoeol(view->title);
wmove(view->title, 0, view->width - 1);
if (input_mode)
va_start(args, msg);
- werase(status_win);
wmove(status_win, 0, 0);
if (*msg) {
vwprintw(status_win, msg, args);
} else {
status_empty = TRUE;
}
+ wclrtoeol(status_win);
wrefresh(status_win);
va_end(args);