Commit bdd17a36 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui/modules/Common/Popup/DesktopPopup): replace `hide` call by...

fix(ui/modules/Common/Popup/DesktopPopup): replace `hide` call by `showMinimized` otherwise the popup is not visible on Ubuntu
parent 23a8a904
......@@ -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()
}
}
}
......
......@@ -34,7 +34,6 @@ SearchBox {
// ---------------------------------------------------------------------------
header: MouseArea {
height: {
var height = SmartSearchBarStyle.header.addButtonHeight
return defaultContact.visible ? height + searchBox.entryHeight : height
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment