Browse Source

Not show a tooltip in the output device selector when the popup shows up

Diego Prado Gesto 6 years ago
parent
commit
da052fbe81
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/qml/ActionPanel/OutputDevicesActionButton.qml

+ 1 - 1
resources/qml/ActionPanel/OutputDevicesActionButton.qml

@@ -55,7 +55,7 @@ Item
 
         leftPadding: UM.Theme.getSize("narrow_margin").width //Need more space than usual here for wide text.
         rightPadding: UM.Theme.getSize("narrow_margin").width
-        tooltip: catalog.i18nc("@info:tooltip", "Select the active output device")
+        tooltip: popup.opened ? "" : catalog.i18nc("@info:tooltip", "Select the active output device")
         iconSource: popup.opened ? UM.Theme.getIcon("arrow_top") : UM.Theme.getIcon("arrow_bottom")
         color: UM.Theme.getColor("action_panel_secondary")
         visible: (devicesModel.deviceCount > 1)