Commit 1ad23782 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: menus: fix faster/slower icons

parent 940068e0
...@@ -104,6 +104,7 @@ DEPS_res = \ ...@@ -104,6 +104,7 @@ DEPS_res = \
pixmaps/clear.png \ pixmaps/clear.png \
pixmaps/eject.png \ pixmaps/eject.png \
pixmaps/faster.png \ pixmaps/faster.png \
pixmaps/faster2.png \
pixmaps/go-next.png \ pixmaps/go-next.png \
pixmaps/menus/help_16px.png \ pixmaps/menus/help_16px.png \
pixmaps/menus/info_16px.png \ pixmaps/menus/info_16px.png \
...@@ -150,6 +151,7 @@ DEPS_res = \ ...@@ -150,6 +151,7 @@ DEPS_res = \
pixmaps/sample_minimal.png \ pixmaps/sample_minimal.png \
pixmaps/sample_skins.png \ pixmaps/sample_skins.png \
pixmaps/slower.png \ pixmaps/slower.png \
pixmaps/slower2.png \
pixmaps/space.png \ pixmaps/space.png \
pixmaps/stop.png \ pixmaps/stop.png \
pixmaps/stop_16px.png \ pixmaps/stop_16px.png \
......
...@@ -794,7 +794,7 @@ void QVLCMenu::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf ) ...@@ -794,7 +794,7 @@ void QVLCMenu::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf )
action = menu->addAction( qtr( "&Faster" ), THEMIM->getIM(), action = menu->addAction( qtr( "&Faster" ), THEMIM->getIM(),
SLOT( faster() ) ); SLOT( faster() ) );
#ifndef __APPLE__ /* No icons in menus in Mac */ #ifndef __APPLE__ /* No icons in menus in Mac */
action->setIcon( QIcon( ":/toolbar/faster") ); action->setIcon( QIcon( ":/toolbar/faster2") );
#endif #endif
action->setData( STATIC_ENTRY ); action->setData( STATIC_ENTRY );
...@@ -813,7 +813,7 @@ void QVLCMenu::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf ) ...@@ -813,7 +813,7 @@ void QVLCMenu::PopupMenuControlEntries( QMenu *menu, intf_thread_t *p_intf )
action = menu->addAction( qtr( "Slo&wer" ), THEMIM->getIM(), action = menu->addAction( qtr( "Slo&wer" ), THEMIM->getIM(),
SLOT( slower() ) ); SLOT( slower() ) );
#ifndef __APPLE__ /* No icons in menus in Mac */ #ifndef __APPLE__ /* No icons in menus in Mac */
action->setIcon( QIcon( ":/toolbar/slower") ); action->setIcon( QIcon( ":/toolbar/slower2") );
#endif #endif
action->setData( STATIC_ENTRY ); action->setData( STATIC_ENTRY );
......
...@@ -63,6 +63,8 @@ ...@@ -63,6 +63,8 @@
<file alias="tv">pixmaps/toolbar/tv.png</file> <file alias="tv">pixmaps/toolbar/tv.png</file>
<file alias="tvtelx">pixmaps/toolbar/tvtelx.png</file> <file alias="tvtelx">pixmaps/toolbar/tvtelx.png</file>
<file alias="space">pixmaps/space.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>
<qresource prefix="/buttons/playlist"> <qresource prefix="/buttons/playlist">
<file alias="playlist_add">pixmaps/playlist/add.png</file> <file alias="playlist_add">pixmaps/playlist/add.png</file>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment