Index: playbackbox.cpp
===================================================================
--- playbackbox.cpp	(revision 17776)
+++ playbackbox.cpp	(working copy)
@@ -4237,18 +4237,18 @@
     if (ignoreKeyPressEvents)
         return;
 
-    // This should be an impossible keypress we've simulated
-    if ((e->key() == Qt::Key_LaunchMedia) &&
-        (e->state() == (Qt::ButtonState)
-         (Qt::MouseButtonMask | Qt::KeyButtonMask)))
+    // This should be a keypress we've simulated
+    if (e->key() == Qt::Key_LaunchMedia) 
     {
         e->accept();
         ncLock.lock();
         int commands = networkControlCommands.size();
         ncLock.unlock();
         if (commands)
+        {        
             processNetworkControlCommands();
-        return;
+            return;
+        }
     }
 
