Index: /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserHandlerKeyboard.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserHandlerKeyboard.cpp	(revision 76000)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserHandlerKeyboard.cpp	(revision 76001)
@@ -316,8 +316,15 @@
         case Qt::Key_Enter:
         {
-            /* Activate item: */
-            model()->activateMachineItem();
-            /* And filter out that event: */
-            return true;
+            /* If this item is of group or machine type: */
+            if (   model()->focusItem()->type() == UIChooserItemType_Group
+                || model()->focusItem()->type() == UIChooserItemType_Machine)
+            {
+                /* Activate item: */
+                model()->activateMachineItem();
+                /* And filter out that event: */
+                return true;
+            }
+            /* Pass event to other items: */
+            return false;
         }
         case Qt::Key_Space:
