Commit 78fd35bd authored by Darko Jankovic's avatar Darko Jankovic Committed by Jean-Baptiste Kempf

Qt: Changed mnemonic that was inaccessible during play.

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 03cd31d2
......@@ -592,7 +592,7 @@ static inline void VolumeEntries( intf_thread_t *p_intf, QMenu *current )
QAction *action = current->addAction( QIcon( ":/toolbar/volume-high" ), qtr( "&Increase Volume" ),
ActionsManager::getInstance( p_intf ), SLOT( AudioUp() ) );
action->setData( VLCMenuBar::ACTION_STATIC );
action = current->addAction( QIcon( ":/toolbar/volume-low" ), qtr( "&Decrease Volume" ),
action = current->addAction( QIcon( ":/toolbar/volume-low" ), qtr( "D&ecrease Volume" ),
ActionsManager::getInstance( p_intf ), SLOT( AudioDown() ) );
action->setData( VLCMenuBar::ACTION_STATIC );
action = current->addAction( QIcon( ":/toolbar/volume-muted" ), qtr( "&Mute" ),
......
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