=== modified file 'plugins/media-keys/gsd-media-keys-manager.c'
--- plugins/media-keys/gsd-media-keys-manager.c	2014-03-10 17:25:56 +0000
+++ plugins/media-keys/gsd-media-keys-manager.c	2014-11-26 07:22:20 +0000
@@ -1537,11 +1537,6 @@
                 break;
         }
 
-        if (old_muted != new_muted) {
-                gvc_mixer_stream_change_is_muted (stream, new_muted);
-                sound_changed = TRUE;
-        }
-
         if (old_vol != new_vol) {
                 if (gvc_mixer_stream_set_volume (stream, new_vol) != FALSE) {
                         gvc_mixer_stream_push_volume (stream);
@@ -1549,6 +1544,11 @@
                 }
         }
 
+        if (old_muted != new_muted) {
+                gvc_mixer_stream_change_is_muted (stream, new_muted);
+                sound_changed = TRUE;
+        }
+
         if (type == VOLUME_DOWN_KEY && old_vol == 0 && old_muted)
                 osd_vol = -1;
         else if (type == VOLUME_UP_KEY && old_vol == max_volume && !old_muted)

