summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 92d0616)
raw | patch | inline | side by side (parent: 92d0616)
author | Kalle Wallin <kaw@linux.se> | |
Sun, 28 Mar 2004 16:38:25 +0000 (16:38 +0000) | ||
committer | Kalle Wallin <kaw@linux.se> | |
Sun, 28 Mar 2004 16:38:25 +0000 (16:38 +0000) |
screen.c | patch | blob | history |
diff --git a/screen.c b/screen.c
index 8d14376ff95c5650950f32023e1b7c605b68c0f8..3025d9a01f1718ba01b1e60b089772cd8ee320b4 100644 (file)
--- a/screen.c
+++ b/screen.c
screen->main_window.cols,
screen->main_window.rows );
- leaveok(screen->main_window.w, TRUE);
+ // leaveok(screen->main_window.w, TRUE); temporary disabled
keypad(screen->main_window.w, TRUE);
/* create progress window */
paint_progress_window(c);
paint_status_window(c);
screen->painted = 1;
+ wmove(screen->main_window.w, 0, 0); wnoutrefresh(screen->main_window.w);
doupdate();
}
}
paint_progress_window(c);
paint_status_window(c);
+ wmove(screen->main_window.w, 0, 0); wnoutrefresh(screen->main_window.w);
doupdate();
}