Browse Source

Fix tooltips on actionbuttons

fieldOfView 4 years ago
parent
commit
afa380555f
1 changed files with 3 additions and 0 deletions
  1. 3 0
      resources/qml/ToolTip.qml

+ 3 - 0
resources/qml/ToolTip.qml

@@ -34,6 +34,9 @@ ToolTip
         NumberAnimation { duration: 100; }
     }
 
+    onAboutToShow: show()
+    onAboutToHide: hide()
+
     // If the text is not set, just set the height to 0 to prevent it from showing
     height: text != "" ? label.contentHeight + 2 * UM.Theme.getSize("thin_margin").width: 0