From: Jean-Baptiste Kempf Date: Wed, 23 Jan 2008 05:44:11 +0000 (+0000) Subject: Qt4 - Support for VolumeMuteKey, as spotted by DGMurdockIII X-Git-Tag: 0.9.0-test0~3271 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f1d202e5e7254f7d9cafe7fba4f9d5f73aee5510;p=vlc Qt4 - Support for VolumeMuteKey, as spotted by DGMurdockIII --- diff --git a/modules/gui/qt4/util/customwidgets.cpp b/modules/gui/qt4/util/customwidgets.cpp index 1fbaec2abc..907e71ccc1 100644 --- a/modules/gui/qt4/util/customwidgets.cpp +++ b/modules/gui/qt4/util/customwidgets.cpp @@ -145,6 +145,7 @@ int qtEventToVLCKey( QKeyEvent *e ) HANDLE( Key_Delete, KEY_DELETE ); HANDLE( Key_VolumeDown, KEY_VOLUME_DOWN); HANDLE( Key_VolumeUp, KEY_VOLUME_UP ); + HANDLE( Key_VolumeMute, KEY_VOLUME_MUTE ); HANDLE( Key_MediaPlay, KEY_MEDIA_PLAY_PAUSE ); HANDLE( Key_MediaStop, KEY_MEDIA_STOP ); HANDLE( Key_MediaPrevious, KEY_MEDIA_PREV_TRACK );