properly select the first menu item in the child menu when using the 'right' keycode

This commit is contained in:
Dana Jansens 2003-08-29 08:52:12 +00:00
parent 09f4a0c51a
commit 53134db127

View file

@ -1200,8 +1200,8 @@ static void event_handle_menu(XEvent *ev)
menu_frame_select(f, NULL);
} else if (ev->xkey.keycode == ob_keycode(OB_KEY_RIGHT)) {
ObMenuFrame *f;
if ((f = find_active_menu()) && f->child && f->child->entries)
menu_frame_select(f->child, f->child->entries->data);
if ((f = find_active_menu()) && f->child)
menu_frame_select_next(f->child);
} else if (ev->xkey.keycode == ob_keycode(OB_KEY_UP)) {
ObMenuFrame *f;
if ((f = find_active_menu()))