Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
069e8d41
Commit
069e8d41
authored
Feb 04, 2009
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Menu key triggers the popup menu
That particular key is supposed to work that way.
parent
4946fda5
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
modules/control/hotkeys.c
modules/control/hotkeys.c
+3
-1
No files found.
modules/control/hotkeys.c
View file @
069e8d41
...
@@ -938,7 +938,6 @@ static int SpecialKeyEvent( vlc_object_t *libvlc, char const *psz_var,
...
@@ -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
;
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
p_data
;
int
i_action
;
int
i_action
;
(
void
)
libvlc
;
(
void
)
psz_var
;
(
void
)
psz_var
;
(
void
)
oldval
;
(
void
)
oldval
;
...
@@ -960,6 +959,9 @@ static int SpecialKeyEvent( vlc_object_t *libvlc, char const *psz_var,
...
@@ -960,6 +959,9 @@ static int SpecialKeyEvent( vlc_object_t *libvlc, char const *psz_var,
case
KEY_MOUSEWHEELRIGHT
:
case
KEY_MOUSEWHEELRIGHT
:
i_action
=
ACTIONID_JUMP_FORWARD_EXTRASHORT
;
i_action
=
ACTIONID_JUMP_FORWARD_EXTRASHORT
;
break
;
break
;
case
KEY_MENU
:
var_SetBool
(
libvlc
,
"intf-popupmenu"
,
true
);
break
;
default:
default:
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment