Merge remote-tracking branch 'origin/marketplace_redesign' into CURA-8559_add_marketplace_search

This commit is contained in:
Remco Burema 2021-11-12 13:10:20 +01:00
commit bc0b7301e5
No known key found for this signature in database
GPG key ID: 215C49431D43F98C
7 changed files with 415 additions and 20 deletions

View file

@ -38,7 +38,7 @@ ToolTip
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
height: label.contentHeight + 2 * UM.Theme.getSize("thin_margin").width
x:
{
@ -74,7 +74,7 @@ ToolTip
}
function show() {
opacity = 1
opacity = text != "" ? 1 : 0
}
function hide() {