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
e93ae0b7
Commit
e93ae0b7
authored
Feb 03, 2010
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix keys order
parent
6c2286c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/config/keys.c
src/config/keys.c
+4
-4
No files found.
src/config/keys.c
View file @
e93ae0b7
...
...
@@ -53,12 +53,15 @@ enum { vlc_num_modifiers=sizeof(vlc_modifiers)
static
const
struct
key_descriptor_s
vlc_keys
[]
=
{
{
"Unset"
,
KEY_UNSET
},
{
"Backspace"
,
KEY_BACKSPACE
},
{
"Tab"
,
KEY_TAB
},
{
"Enter"
,
KEY_ENTER
},
{
"Esc"
,
KEY_ESC
},
{
"Space"
,
' '
},
{
"Left"
,
KEY_LEFT
},
{
"Right"
,
KEY_RIGHT
},
{
"Up"
,
KEY_UP
},
{
"Down"
,
KEY_DOWN
},
{
"Enter"
,
KEY_ENTER
},
{
"F1"
,
KEY_F1
},
{
"F2"
,
KEY_F2
},
{
"F3"
,
KEY_F3
},
...
...
@@ -76,11 +79,8 @@ static const struct key_descriptor_s vlc_keys[] =
{
"Insert"
,
KEY_INSERT
},
{
"Delete"
,
KEY_DELETE
},
{
"Menu"
,
KEY_MENU
},
{
"Esc"
,
KEY_ESC
},
{
"Page Up"
,
KEY_PAGEUP
},
{
"Page Down"
,
KEY_PAGEDOWN
},
{
"Tab"
,
KEY_TAB
},
{
"Backspace"
,
KEY_BACKSPACE
},
{
"Browser Back"
,
KEY_BROWSER_BACK
},
{
"Browser Forward"
,
KEY_BROWSER_FORWARD
},
{
"Browser Refresh"
,
KEY_BROWSER_REFRESH
},
...
...
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