1
0
mirror of https://github.com/MidnightCommander/mc synced 2025-04-03 05:32:56 +03:00

Use commands instead of callbacks to execute menu items.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2009-10-01 22:23:50 +04:00
parent 4a02baa202
commit 095fc65580

@ -695,7 +695,7 @@ create_panel_menu (void)
#endif
#endif
entries = g_list_append (entries, menu_separator_create ());
entries = g_list_append (entries, menu_entry_create (_("&Rescan C-r"), reread_cmd));
entries = g_list_append (entries, menu_entry_create (_("&Rescan C-r"), CK_RereadCmd));
return entries;
}