Browse Source

Add tooltip for formulas on profile overview tabs

fieldOfView 8 years ago
parent
commit
90c3a09bc0
1 changed files with 3 additions and 2 deletions
  1. 3 2
      resources/qml/Preferences/ProfileTab.qml

+ 3 - 2
resources/qml/Preferences/ProfileTab.qml

@@ -25,12 +25,13 @@ Tab
         {
             id: itemDelegate
 
-            Rectangle
+            UM.TooltipArea
             {
                 property var setting: qualitySettings.getItem(styleData.row)
                 height: childrenRect.height
-                color: "transparent"
                 width: (parent != null) ? parent.width : 0
+                text: (styleData.value.substr(0,1) == "=") ? styleData.value : ""
+
                 Label
                 {
                     anchors.left: parent.left