Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
d66f3ddc
Commit
d66f3ddc
authored
Jan 31, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hotkeys: remove unused OSD menu actions
parent
a0d9cb0e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
36 deletions
+0
-36
include/vlc_keys.h
include/vlc_keys.h
+0
-7
modules/control/hotkeys.c
modules/control/hotkeys.c
+0
-22
src/config/keys.c
src/config/keys.c
+0
-7
No files found.
include/vlc_keys.h
View file @
d66f3ddc
...
...
@@ -197,13 +197,6 @@ typedef enum vlc_action {
ACTIONID_LOOP
,
ACTIONID_WALLPAPER
,
ACTIONID_LEAVE_FULLSCREEN
,
ACTIONID_MENU_ON
,
ACTIONID_MENU_OFF
,
ACTIONID_MENU_RIGHT
,
ACTIONID_MENU_LEFT
,
ACTIONID_MENU_UP
,
ACTIONID_MENU_DOWN
,
ACTIONID_MENU_SELECT
,
/* Zoom */
ACTIONID_ZOOM_QUARTER
,
ACTIONID_ZOOM_HALF
,
...
...
modules/control/hotkeys.c
View file @
d66f3ddc
...
...
@@ -188,28 +188,6 @@ static int PutAction( intf_thread_t *p_intf, int i_action )
var_TriggerCallback
(
p_intf
->
p_libvlc
,
"intf-boss"
);
break
;
case
ACTIONID_MENU_ON
:
osd_MenuShow
(
VLC_OBJECT
(
p_intf
)
);
break
;
case
ACTIONID_MENU_OFF
:
osd_MenuHide
(
VLC_OBJECT
(
p_intf
)
);
break
;
case
ACTIONID_MENU_LEFT
:
osd_MenuPrev
(
VLC_OBJECT
(
p_intf
)
);
break
;
case
ACTIONID_MENU_RIGHT
:
osd_MenuNext
(
VLC_OBJECT
(
p_intf
)
);
break
;
case
ACTIONID_MENU_UP
:
osd_MenuUp
(
VLC_OBJECT
(
p_intf
)
);
break
;
case
ACTIONID_MENU_DOWN
:
osd_MenuDown
(
VLC_OBJECT
(
p_intf
)
);
break
;
case
ACTIONID_MENU_SELECT
:
osd_MenuActivate
(
VLC_OBJECT
(
p_intf
)
);
break
;
/* Playlist actions (including audio) */
case
ACTIONID_LOOP
:
/* Toggle Normal -> Loop -> Repeat -> Normal ... */
...
...
src/config/keys.c
View file @
d66f3ddc
...
...
@@ -298,13 +298,6 @@ static const struct action actions[] =
{
"jump-short"
,
ACTIONID_JUMP_BACKWARD_SHORT
,
},
{
"leave-fullscreen"
,
ACTIONID_LEAVE_FULLSCREEN
,
},
{
"loop"
,
ACTIONID_LOOP
,
},
{
"menu-down"
,
ACTIONID_MENU_DOWN
,
},
{
"menu-left"
,
ACTIONID_MENU_LEFT
,
},
{
"menu-off"
,
ACTIONID_MENU_OFF
,
},
{
"menu-on"
,
ACTIONID_MENU_ON
,
},
{
"menu-right"
,
ACTIONID_MENU_RIGHT
,
},
{
"menu-select"
,
ACTIONID_MENU_SELECT
,
},
{
"menu-up"
,
ACTIONID_MENU_UP
,
},
{
"nav-activate"
,
ACTIONID_NAV_ACTIVATE
,
},
{
"nav-down"
,
ACTIONID_NAV_DOWN
,
},
{
"nav-left"
,
ACTIONID_NAV_LEFT
,
},
...
...
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