Index: /trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerOperationsPanel.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerOperationsPanel.cpp	(revision 78200)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/guestctrl/UIFileManagerOperationsPanel.cpp	(revision 78201)
@@ -100,4 +100,5 @@
     QIToolButton           *m_pCancelButton;
     QILabel                *m_pStatusLabel;
+    QILabel                *m_pOperationDescriptionLabel;
 };
 
@@ -116,4 +117,5 @@
     , m_pCancelButton(0)
     , m_pStatusLabel(0)
+    , m_pOperationDescriptionLabel(0)
 {
     prepare();
@@ -200,4 +202,11 @@
     //m_pMainLayout->setSpacing(0);
 
+    m_pOperationDescriptionLabel = new QILabel;
+    if (m_pOperationDescriptionLabel)
+    {
+        m_pOperationDescriptionLabel->setContextMenuPolicy(Qt::NoContextMenu);
+        m_pMainLayout->addWidget(m_pOperationDescriptionLabel, 0, 0, 1, 3);
+    }
+
     m_pProgressBar = new QProgressBar;
     if (m_pProgressBar)
@@ -206,5 +215,5 @@
         m_pProgressBar->setMaximum(100);
         m_pProgressBar->setTextVisible(true);
-        m_pMainLayout->addWidget(m_pProgressBar, 0, 0, 1, 2);
+        m_pMainLayout->addWidget(m_pProgressBar, 1, 0, 1, 2);
     }
 
@@ -216,5 +225,5 @@
         if (!m_comProgress.isNull() && !m_comProgress.GetCancelable())
             m_pCancelButton->setEnabled(false);
-        m_pMainLayout->addWidget(m_pCancelButton, 0, 2, 1, 1);
+        m_pMainLayout->addWidget(m_pCancelButton, 1, 2, 1, 1);
     }
 
@@ -223,5 +232,5 @@
     {
         m_pStatusLabel->setContextMenuPolicy(Qt::NoContextMenu);
-        m_pMainLayout->addWidget(m_pStatusLabel, 0, 3, 1, 1);
+        m_pMainLayout->addWidget(m_pStatusLabel, 1, 3, 1, 1);
     }
 
@@ -253,4 +262,8 @@
     Q_UNUSED(uProgressId);
     m_pProgressBar->setValue(iPercent);
+
+    if (m_pOperationDescriptionLabel)
+        m_pOperationDescriptionLabel->setText(m_comProgress.GetDescription());
+
 }
 
