mirror of
https://github.com/MidnightCommander/mc
synced 2025-01-09 13:02:01 +03:00
* hotlist.c (l_call): Fix incorrect calls to hotlist_callback().
This commit is contained in:
parent
c0b34498dd
commit
a48fa9fa8d
@ -1,5 +1,7 @@
|
||||
2003-09-12 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* hotlist.c (l_call): Fix incorrect calls to hotlist_callback().
|
||||
|
||||
* dlg.h: Merge Widget_Item into Widget. Massive adjustment.
|
||||
|
||||
* main.c (setup_panels_and_run_mc): Use straight widget order in
|
||||
|
@ -492,7 +492,7 @@ static int l_call (WListbox *list)
|
||||
return LISTBOX_DONE;
|
||||
} else {
|
||||
hotlist_button_callback (B_ENTER);
|
||||
hotlist_callback (dlg, '\n', DLG_POST_KEY);
|
||||
hotlist_callback (dlg, DLG_POST_KEY, '\n');
|
||||
return LISTBOX_CONT;
|
||||
}
|
||||
} else {
|
||||
@ -503,7 +503,7 @@ static int l_call (WListbox *list)
|
||||
}
|
||||
|
||||
hotlist_button_callback (B_UP_GROUP);
|
||||
hotlist_callback (dlg, 'u', DLG_POST_KEY);
|
||||
hotlist_callback (dlg, DLG_POST_KEY, 'u');
|
||||
return LISTBOX_CONT;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user