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
1ad23782
Commit
1ad23782
authored
Sep 23, 2011
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Qt: menus: fix faster/slower icons
parent
940068e0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
2 deletions
+6
-2
modules/gui/qt4/Modules.am
modules/gui/qt4/Modules.am
+2
-0
modules/gui/qt4/menus.cpp
modules/gui/qt4/menus.cpp
+2
-2
modules/gui/qt4/pixmaps/faster2.png
modules/gui/qt4/pixmaps/faster2.png
+0
-0
modules/gui/qt4/pixmaps/slower2.png
modules/gui/qt4/pixmaps/slower2.png
+0
-0
modules/gui/qt4/vlc.qrc
modules/gui/qt4/vlc.qrc
+2
-0
No files found.
modules/gui/qt4/Modules.am
View file @
1ad23782
...
...
@@ -104,6 +104,7 @@ DEPS_res = \
pixmaps/clear.png \
pixmaps/eject.png \
pixmaps/faster.png \
pixmaps/faster2.png \
pixmaps/go-next.png \
pixmaps/menus/help_16px.png \
pixmaps/menus/info_16px.png \
...
...
@@ -150,6 +151,7 @@ DEPS_res = \
pixmaps/sample_minimal.png \
pixmaps/sample_skins.png \
pixmaps/slower.png \
pixmaps/slower2.png \
pixmaps/space.png \
pixmaps/stop.png \
pixmaps/stop_16px.png \
...
...
modules/gui/qt4/menus.cpp
View file @
1ad23782
...
...
@@ -794,7 +794,7 @@ void QVLCMenu::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf )
action
=
menu
->
addAction
(
qtr
(
"&Faster"
),
THEMIM
->
getIM
(),
SLOT
(
faster
()
)
);
#ifndef __APPLE__
/* No icons in menus in Mac */
action
->
setIcon
(
QIcon
(
":/toolbar/faster"
)
);
action
->
setIcon
(
QIcon
(
":/toolbar/faster
2
"
)
);
#endif
action
->
setData
(
STATIC_ENTRY
);
...
...
@@ -813,7 +813,7 @@ void QVLCMenu::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf )
action
=
menu
->
addAction
(
qtr
(
"Slo&wer"
),
THEMIM
->
getIM
(),
SLOT
(
slower
()
)
);
#ifndef __APPLE__
/* No icons in menus in Mac */
action
->
setIcon
(
QIcon
(
":/toolbar/slower"
)
);
action
->
setIcon
(
QIcon
(
":/toolbar/slower
2
"
)
);
#endif
action
->
setData
(
STATIC_ENTRY
);
...
...
modules/gui/qt4/pixmaps/faster2.png
0 → 100644
View file @
1ad23782
458 Bytes
modules/gui/qt4/pixmaps/slower2.png
0 → 100644
View file @
1ad23782
520 Bytes
modules/gui/qt4/vlc.qrc
View file @
1ad23782
...
...
@@ -63,6 +63,8 @@
<file alias="tv">pixmaps/toolbar/tv.png</file>
<file alias="tvtelx">pixmaps/toolbar/tvtelx.png</file>
<file alias="space">pixmaps/space.png</file>
<file alias="slower2">pixmaps/slower2.png</file>
<file alias="faster2">pixmaps/faster2.png</file>
</qresource>
<qresource prefix="/buttons/playlist">
<file alias="playlist_add">pixmaps/playlist/add.png</file>
...
...
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