Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
3d836aaa
Commit
3d836aaa
authored
Feb 16, 2009
by
Jean-Philippe Andre
Browse files
Qt: menu playback/bookmark can now open the bookmarks dialog
parent
ffedfbb5
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/gui/qt4/menus.cpp
View file @
3d836aaa
...
...
@@ -615,7 +615,13 @@ QMenu *QVLCMenu::NavigMenu( intf_thread_t *p_intf, QMenu *menu )
{
if
(
menu
->
isEmpty
()
)
{
ACT_ADDMENU
(
menu
,
"bookmark"
,
qtr
(
"&Bookmarks"
)
);
QAction
*
action
;
QMenu
*
submenu
=
new
QMenu
(
qtr
(
"&Bookmarks"
),
menu
);
addDPStaticEntry
(
submenu
,
qtr
(
"Manage &bookmarks"
),
""
,
SLOT
(
bookmarksDialog
()
)
);
submenu
->
addSeparator
();
action
=
menu
->
addMenu
(
submenu
);
action
->
setData
(
"bookmark"
);
ACT_ADDMENU
(
menu
,
"title"
,
qtr
(
"T&itle"
)
);
ACT_ADDMENU
(
menu
,
"chapter"
,
qtr
(
"&Chapter"
)
);
ACT_ADDMENU
(
menu
,
"navigation"
,
qtr
(
"&Navigation"
)
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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