Commit 069e8d41 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Menu key triggers the popup menu

That particular key is supposed to work that way.
parent 4946fda5
......@@ -938,7 +938,6 @@ static int SpecialKeyEvent( vlc_object_t *libvlc, char const *psz_var,
intf_thread_t *p_intf = (intf_thread_t *)p_data;
int i_action;
(void)libvlc;
(void)psz_var;
(void)oldval;
......@@ -960,6 +959,9 @@ static int SpecialKeyEvent( vlc_object_t *libvlc, char const *psz_var,
case KEY_MOUSEWHEELRIGHT:
i_action = ACTIONID_JUMP_FORWARD_EXTRASHORT;
break;
case KEY_MENU:
var_SetBool( libvlc, "intf-popupmenu", true );
break;
default:
return VLC_SUCCESS;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment