Index: /trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.cpp	(revision 74688)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.cpp	(revision 74689)
@@ -238,6 +238,6 @@
     /* Paint background: */
     paintBackground(pPainter, pOptions);
-    /* Paint frame rectangle: */
-    paintFrameRect(pPainter, pOptions);
+    /* Paint frame: */
+    paintFrame(pPainter, pOptions);
     /* Paint element info: */
     paintElementInfo(pPainter, pOptions);
@@ -700,5 +700,5 @@
 }
 
-void UIDetailsElement::paintFrameRect(QPainter *pPainter, const QStyleOptionGraphicsItem *pOptions) const
+void UIDetailsElement::paintFrame(QPainter *pPainter, const QStyleOptionGraphicsItem *pOptions) const
 {
     /* Save painter: */
@@ -709,7 +709,7 @@
     const int iHeadHeight = 2 * iMargin + m_iMinimumHeaderHeight;
     const QRect optionRect = pOptions->rect;
-    const QRect fullRect = m_fAnimationRunning
-                         ? QRect(optionRect.topLeft(), QSize(optionRect.width(), iHeadHeight + m_iAdditionalHeight))
-                         : optionRect;
+    const QRect rectangle = m_fAnimationRunning
+                          ? QRect(optionRect.topLeft(), QSize(optionRect.width(), iHeadHeight + m_iAdditionalHeight))
+                          : optionRect;
 
     /* Paint frame: */
@@ -718,5 +718,8 @@
     pen.setWidth(0);
     pPainter->setPen(pen);
-    pPainter->drawRect(fullRect);
+    pPainter->drawLine(rectangle.topLeft(),    rectangle.topRight());
+    pPainter->drawLine(rectangle.bottomLeft(), rectangle.bottomRight());
+    pPainter->drawLine(rectangle.topLeft(),    rectangle.bottomLeft());
+    pPainter->drawLine(rectangle.topRight(),   rectangle.bottomRight());
 
     /* Restore painter: */
Index: /trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.h
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.h	(revision 74688)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/manager/details/UIDetailsElement.h	(revision 74689)
@@ -277,6 +277,6 @@
         /** Paints background using specified @a pPainter and certain @a pOptions. */
         void paintBackground(QPainter *pPainter, const QStyleOptionGraphicsItem *pOptions) const;
-        /** Paints frame rectangle using passed @a pPainter and certain @a pOptions. */
-        void paintFrameRect(QPainter *pPainter, const QStyleOptionGraphicsItem *pOptions) const;
+        /** Paints frame using passed @a pPainter and certain @a pOptions. */
+        void paintFrame(QPainter *pPainter, const QStyleOptionGraphicsItem *pOptions) const;
         /** Paints element info using specified @a pPainter and certain @a pOptions. */
         void paintElementInfo(QPainter *pPainter, const QStyleOptionGraphicsItem *pOptions) const;
