1
1

* cmd.c (toggle_listing_cmd): Included the brief listing mode in

the list of listing modes that can be switched through using
	Alt-t.
Этот коммит содержится в:
Roland Illig 2006-01-28 09:21:55 +00:00
родитель 8f683b9789
Коммит cbf2c616ff
2 изменённых файлов: 8 добавлений и 17 удалений

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

@ -1,3 +1,9 @@
2006-01-28 Roland Illig <roland.illig@gmx.de>
* cmd.c (toggle_listing_cmd): Included the brief listing mode in
the list of listing modes that can be switched through using
Alt-t.
2006-01-27 Roland Illig <roland.illig@gmx.de>
* Makefile.am: cons.saver is installed in $(pkglibexecdir), not

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

@ -1351,22 +1351,7 @@ toggle_listing_cmd (void)
{
int current = get_current_index ();
WPanel *p = (WPanel *) get_panel_widget (current);
int list_mode = p->list_type;
int m;
switch (list_mode){
case list_full:
case list_brief:
m = list_long;
break;
case list_long:
m = list_user;
break;
default:
m = list_full;
}
if (set_basic_panel_listing_to (current, m))
return;
set_basic_panel_listing_to (current, list_full);
set_basic_panel_listing_to (current, (p->list_type + 1) % LIST_TYPES);
}