Index: /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsElements.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsElements.cpp	(revision 53411)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/details/UIGDetailsElements.cpp	(revision 53412)
@@ -542,9 +542,12 @@
                         const QString strAnchorType = deviceType == KDeviceType_DVD || deviceType == KDeviceType_Floppy ? QString("mount") :
                                                       deviceType == KDeviceType_HardDisk ? QString("attach") : QString();
+                        const CMedium medium = attachment.GetMedium();
+                        const QString strMediumLocation = medium.isNull() ? QString() : medium.GetLocation();
                         attachmentsMap.insert(attachmentSlot,
-                                              QString("<a href=#%1,%2,%3>%4</a>")
+                                              QString("<a href=#%1,%2,%3,%4>%5</a>")
                                                       .arg(strAnchorType,
                                                            controller.GetName(),
                                                            gpConverter->toString(attachmentSlot),
+                                                           strMediumLocation,
                                                            strDeviceType + strAttachmentInfo));
                     }
Index: /trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsTextPane.cpp
===================================================================
--- /trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsTextPane.cpp	(revision 53411)
+++ /trunk/src/VBox/Frontends/VirtualBox/src/widgets/graphics/UIGraphicsTextPane.cpp	(revision 53412)
@@ -314,4 +314,7 @@
     /* Update text-layout: */
     updateTextLayout();
+
+    /* Update tool-tip: */
+    setToolTip(m_strHoveredAnchor.section(',', -1));
 
     /* Update text-pane: */
