summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1c75a79)
raw | patch | inline | side by side (parent: 1c75a79)
author | Kalle Wallin <kaw@linux.se> | |
Fri, 26 Mar 2004 13:28:51 +0000 (13:28 +0000) | ||
committer | Kalle Wallin <kaw@linux.se> | |
Fri, 26 Mar 2004 13:28:51 +0000 (13:28 +0000) |
screen.c | patch | blob | history | |
screen_file.c | patch | blob | history | |
screen_play.c | patch | blob | history |
diff --git a/screen.c b/screen.c
index 8a885f3f7174d9a7d6127fb04c707e1385341831..a63af20f69a8e61aa18f7ddc44ec0602cbc35672 100644 (file)
--- a/screen.c
+++ b/screen.c
if( options.enable_colors )
wattroff(w, LINE_COLORS);
- wrefresh(w);
+ wnoutrefresh(w);
}
}
{
mvwhline(screen->progress_window.w, 0, 0, ACS_HLINE,
screen->progress_window.cols);
- wrefresh(screen->progress_window.w);
+ wnoutrefresh(screen->progress_window.w);
return;
}
screen->progress_window.cols);
whline(screen->progress_window.w, '=', width-1);
mvwaddch(screen->progress_window.w, 0, width-1, 'O');
- wrefresh(screen->progress_window.w);
+ wnoutrefresh(screen->progress_window.w);
}
static void
#endif
- wrefresh(w);
+ wnoutrefresh(w);
}
wattron(w, A_BOLD);
my_waddstr(w, msg, ALERT_COLORS);
wattroff(w, A_BOLD);
- wrefresh(w);
+ wnoutrefresh(w);
screen->status_timestamp = time(NULL);
}
paint_progress_window(c);
paint_status_window(c);
screen->painted = 1;
+ doupdate();
}
void
}
paint_progress_window(c);
paint_status_window(c);
+ doupdate();
}
void
diff --git a/screen_file.c b/screen_file.c
index e3de2d051aa8853114b13e010fee5621fe1cda58..b792d6ad906e02435caff3344ab5065b069ee021 100644 (file)
--- a/screen_file.c
+++ b/screen_file.c
w->clear = 1;
list_window_paint(screen->filelist, list_callback, (void *) c);
- wrefresh(screen->filelist->w);
+ wnoutrefresh(screen->filelist->w);
}
void
return;
}
list_window_paint(screen->filelist, list_callback, (void *) c);
- wrefresh(screen->filelist->w);
+ wnoutrefresh(screen->filelist->w);
}
diff --git a/screen_play.c b/screen_play.c
index c52c2d1651a8b0463493ae0a0e6f028df00f8a15..7c5cab1ff080503e259c3956d08a3897593267ac 100644 (file)
--- a/screen_play.c
+++ b/screen_play.c
w->clear = 1;
list_window_paint(screen->playlist, list_callback, (void *) c);
- wrefresh(screen->playlist->w);
+ wnoutrefresh(screen->playlist->w);
}
void
else if( screen->playlist->repaint || 1)
{
list_window_paint(screen->playlist, list_callback, (void *) c);
- wrefresh(screen->playlist->w);
+ wnoutrefresh(screen->playlist->w);
screen->playlist->repaint = 0;
}
}