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
93b9a64d
Commit
93b9a64d
authored
Apr 26, 2005
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/gui/wxwindows/interface.cpp: sanitized the menus shortcuts.
parent
059243ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
modules/gui/wxwindows/interface.cpp
modules/gui/wxwindows/interface.cpp
+7
-5
No files found.
modules/gui/wxwindows/interface.cpp
View file @
93b9a64d
...
...
@@ -394,12 +394,12 @@ void Interface::CreateOurMenuBar()
file_menu
->
AppendSeparator
();
file_menu
->
Append
(
OpenFile_Event
,
wxU
(
_
(
"Open &File...
\t
Ctrl-F"
))
);
file_menu
->
Append
(
OpenDir_Event
,
wxU
(
_
(
"Open Di
&rectory...
\t
Ctrl-R
"
))
);
file_menu
->
Append
(
OpenDir_Event
,
wxU
(
_
(
"Open Di
r&ectory...
\t
Ctrl-E
"
))
);
file_menu
->
Append
(
OpenDisc_Event
,
wxU
(
_
(
"Open &Disc...
\t
Ctrl-D"
))
);
file_menu
->
Append
(
OpenNet_Event
,
wxU
(
_
(
"Open &Network Stream...
\t
Ctrl-N"
))
);
file_menu
->
Append
(
OpenCapture_Event
,
wxU
(
_
(
"Open
&Capture Device...
\t
Ctrl-C
"
))
);
wxU
(
_
(
"Open
C&apture Device...
\t
Ctrl-A
"
))
);
file_menu
->
AppendSeparator
();
file_menu
->
Append
(
Wizard_Event
,
wxU
(
_
(
"&Wizard...
\t
Ctrl-W"
))
);
...
...
@@ -790,15 +790,17 @@ void Interface::OnMenuOpen( wxMenuEvent& event )
/* Add static items */
p_settings_menu
->
AppendCheckItem
(
Extended_Event
,
wxU
(
_
(
"
&Extended GUI
"
)
)
);
wxU
(
_
(
"
Extended &GUI
\t
Ctrl-G
"
)
)
);
if
(
b_extra
)
p_settings_menu
->
Check
(
Extended_Event
,
TRUE
);
#if 0
p_settings_menu->AppendCheckItem( Undock_Event,
wxU(_("&Undock Ext. GUI") ) );
if( b_undock ) p_settings_menu->Check( Undock_Event, TRUE );
#endif
p_settings_menu
->
Append
(
Bookmarks_Event
,
wxU
(
_
(
"&Bookmarks..."
)
)
);
p_settings_menu
->
Append
(
Prefs_Event
,
wxU
(
_
(
"&Preferences..."
))
);
p_settings_menu
->
Append
(
Bookmarks_Event
,
wxU
(
_
(
"&Bookmarks...
\t
Ctrl-B"
)
)
);
p_settings_menu
->
Append
(
Prefs_Event
,
wxU
(
_
(
"Preference&s...
\t
Ctrl-S"
))
);
}
else
if
(
event
.
GetEventObject
()
==
p_audio_menu
)
...
...
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