fix(ui/modules/Common/Popup/DesktopPopup): replace hide call by showMinimized otherwise the popup is not visible on Ubuntu

This commit is contained in:
Ronan Abhamon 2017-01-10 16:39:02 +01:00
parent 23a8a9048b
commit bdd17a36b4
2 changed files with 2 additions and 3 deletions

View file

@ -77,7 +77,7 @@ Item {
to: 'opened'
ScriptAction {
script: popup.show()
script: popup.showNormal()
}
NumberAnimation {
@ -101,7 +101,7 @@ Item {
}
ScriptAction {
script: popup.hide()
script: popup.showMinimized()
}
}
}

View file

@ -34,7 +34,6 @@ SearchBox {
// ---------------------------------------------------------------------------
header: MouseArea {
height: {
var height = SmartSearchBarStyle.header.addButtonHeight
return defaultContact.visible ? height + searchBox.entryHeight : height