Ticket #2384: allow rebind Fx keys in the file manager.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Andrew Borodin 2012-03-22 16:09:01 +03:00
parent 789ec67348
commit 62f382b70e

View File

@ -1511,14 +1511,8 @@ midnight_callback (Dlg_head * h, Widget * sender, dlg_msg_t msg, int parm, void
return MSG_HANDLED; return MSG_HANDLED;
case DLG_UNHANDLED_KEY: case DLG_UNHANDLED_KEY:
if (command_prompt)
{ {
cb_ret_t v; cb_ret_t v = MSG_NOT_HANDLED;
v = send_message ((Widget *) cmdline, WIDGET_KEY, parm);
if (v == MSG_HANDLED)
return MSG_HANDLED;
}
if (ctl_x_map_enabled) if (ctl_x_map_enabled)
{ {
@ -1528,7 +1522,14 @@ midnight_callback (Dlg_head * h, Widget * sender, dlg_msg_t msg, int parm, void
else else
command = keybind_lookup_keymap_command (main_map, parm); command = keybind_lookup_keymap_command (main_map, parm);
return (command == CK_IgnoreKey) ? MSG_NOT_HANDLED : midnight_execute_cmd (NULL, command); if (command != CK_IgnoreKey)
v = midnight_execute_cmd (NULL, command);
if (v == MSG_NOT_HANDLED && command_prompt)
v = send_message ((Widget *) cmdline, WIDGET_KEY, parm);
return v;
}
case DLG_POST_KEY: case DLG_POST_KEY:
if (!the_menubar->is_active) if (!the_menubar->is_active)