1
1

* layout.c (rotate_dash): Set color before printing the dash.

Этот коммит содержится в:
Dmitry Alexeyev 2003-12-24 06:43:26 +00:00
родитель 99971fbac7
Коммит 95a681cd24
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,7 @@
2003-12-24 Pavel Roskin <proski@gnu.org>
* layout.c (rotate_dash): Set color before printing the dash.
2003-12-01 Pavel Roskin <proski@gnu.org>
* command.c (examine_cd): Add tilde expansion.

Просмотреть файл

@ -860,6 +860,7 @@ void rotate_dash (void)
if (pos >= sizeof (rotating_dash)-1)
pos = 0;
move (0, COLS-1);
attrset (NORMAL_COLOR);
addch (rotating_dash [pos]);
mc_refresh ();
pos++;