Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
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
Commits
c16bb9c7
Commit
c16bb9c7
authored
Nov 29, 2013
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix KEY_PAUSE double-definition
parent
66dbbce4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
src/libvlc-module.c
src/libvlc-module.c
+3
-3
No files found.
src/libvlc-module.c
View file @
c16bb9c7
...
@@ -2151,7 +2151,7 @@ vlc_module_begin ()
...
@@ -2151,7 +2151,7 @@ vlc_module_begin ()
# define KEY_TOGGLE_FULLSCREEN "Command+f"
# define KEY_TOGGLE_FULLSCREEN "Command+f"
# define KEY_LEAVE_FULLSCREEN "Esc"
# define KEY_LEAVE_FULLSCREEN "Esc"
# define KEY_PLAY_PAUSE "Space"
# define KEY_PLAY_PAUSE "Space"
# define KEY_
PAUSE
NULL
# define KEY_
SIMPLE_PAUSE
NULL
# define KEY_PLAY NULL
# define KEY_PLAY NULL
# define KEY_FASTER "Command+="
# define KEY_FASTER "Command+="
# define KEY_SLOWER "Command+-"
# define KEY_SLOWER "Command+-"
...
@@ -2266,7 +2266,7 @@ vlc_module_begin ()
...
@@ -2266,7 +2266,7 @@ vlc_module_begin ()
# define KEY_TOGGLE_FULLSCREEN "f"
# define KEY_TOGGLE_FULLSCREEN "f"
# define KEY_LEAVE_FULLSCREEN "Esc"
# define KEY_LEAVE_FULLSCREEN "Esc"
# define KEY_PLAY_PAUSE "Space\tMedia Play Pause"
# define KEY_PLAY_PAUSE "Space\tMedia Play Pause"
# define KEY_
PAUSE
"Browser Stop"
# define KEY_
SIMPLE_PAUSE
"Browser Stop"
# define KEY_PLAY "Browser Refresh"
# define KEY_PLAY "Browser Refresh"
# define KEY_FASTER "+"
# define KEY_FASTER "+"
# define KEY_SLOWER "-"
# define KEY_SLOWER "-"
...
@@ -2392,7 +2392,7 @@ vlc_module_begin ()
...
@@ -2392,7 +2392,7 @@ vlc_module_begin ()
LEAVE_FULLSCREEN_KEY_LONGTEXT
,
false
)
LEAVE_FULLSCREEN_KEY_LONGTEXT
,
false
)
add_key
(
"key-play-pause"
,
KEY_PLAY_PAUSE
,
PLAY_PAUSE_KEY_TEXT
,
add_key
(
"key-play-pause"
,
KEY_PLAY_PAUSE
,
PLAY_PAUSE_KEY_TEXT
,
PLAY_PAUSE_KEY_LONGTEXT
,
false
)
PLAY_PAUSE_KEY_LONGTEXT
,
false
)
add_key
(
"key-pause"
,
KEY_PAUSE
,
PAUSE_KEY_TEXT
,
add_key
(
"key-pause"
,
KEY_
SIMPLE_
PAUSE
,
PAUSE_KEY_TEXT
,
PAUSE_KEY_LONGTEXT
,
true
)
PAUSE_KEY_LONGTEXT
,
true
)
add_key
(
"key-play"
,
KEY_PLAY
,
PLAY_KEY_TEXT
,
add_key
(
"key-play"
,
KEY_PLAY
,
PLAY_KEY_TEXT
,
PLAY_KEY_LONGTEXT
,
true
)
PLAY_KEY_LONGTEXT
,
true
)
...
...
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