Index: /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.cpp	(revision 76914)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.cpp	(revision 76915)
@@ -79,4 +79,5 @@
     , m_fIsScrollingInProgress(false)
     , m_pLookupTimer(0)
+    , m_iGlobalItemHeightHint(-1)
 {
     /* Prepare: */
@@ -471,4 +472,9 @@
     m_pLeftRoot->setPos(0, 0);
     m_pLeftRoot->resize(root()->geometry().size());
+    if (fLeftRootIsMain)
+    {
+        foreach (UIChooserItem *pItem, m_pLeftRoot->items(UIChooserItemType_Global))
+            pItem->toGlobalItem()->setHeightHint(m_iGlobalItemHeightHint);
+    }
 
     /* Create right root: */
@@ -506,4 +512,9 @@
     m_pLeftRoot->setPos(- root()->geometry().width(), 0);
     m_pLeftRoot->resize(root()->geometry().size());
+    if (fLeftRootIsMain)
+    {
+        foreach (UIChooserItem *pItem, m_pLeftRoot->items(UIChooserItemType_Global))
+            pItem->toGlobalItem()->setHeightHint(m_iGlobalItemHeightHint);
+    }
 
     /* Create right root: */
@@ -672,4 +683,7 @@
 void UIChooserModel::setGlobalItemHeightHint(int iHint)
 {
+    /* Remember new hint: */
+    m_iGlobalItemHeightHint = iHint;
+
     /* Walk thrugh all the items of navigation list: */
     foreach (UIChooserItem *pItem, navigationList())
@@ -681,5 +695,5 @@
             UIChooserItemGlobal *pGlobalItem = pItem->toGlobalItem();
             if (pGlobalItem)
-                pGlobalItem->setHeightHint(iHint);
+                pGlobalItem->setHeightHint(m_iGlobalItemHeightHint);
         }
     }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.h	(revision 76914)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/manager/chooser/UIChooserModel.h	(revision 76915)
@@ -523,4 +523,7 @@
         /** Holds the Id of last VM created from the GUI side. */
         QUuid  m_uLastCreatedMachineId;
+
+        /** Holds the global item height hint. */
+        int  m_iGlobalItemHeightHint;
     /** @} */
 
