* layout.c (print_vfs_message): Set normal color, don't use

random current attributes.
This commit is contained in:
Pavel Roskin 2002-08-22 23:59:20 +00:00
parent c3e1cd0a98
commit 9feb2ffdf5
2 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2002-08-22 Pavel Roskin <proski@gnu.org>
* layout.c (print_vfs_message): Set normal color, don't use
random current attributes.
* dlg.h (struct Dlg_head): Eliminate "data" field, it duplicated
functionality of "title".
* wtools.c (query_callback): Use dialog_repaint().

View File

@ -835,6 +835,7 @@ void print_vfs_message (char *msg, ...)
if (!nice_rotating_dash || (ok_to_refresh <= 0))
return;
move (0, 0);
attrset (NORMAL_COLOR);
printw ("%-*s", COLS-1, str);
mc_refresh ();
return;