Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Jean-Baptiste Kempf
VLC
Commits
93b9a64d
Commit
93b9a64d
authored
Apr 26, 2005
by
gbazin
Browse files
* modules/gui/wxwindows/interface.cpp: sanitized the menus shortcuts.
parent
059243ee
Changes
1
Hide whitespace changes
Inline
Side-by-side
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 Dir
&
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
Supports
Markdown
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