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 { ...@@ -77,7 +77,7 @@ Item {
to: 'opened' to: 'opened'
ScriptAction { ScriptAction {
script: popup.show() script: popup.showNormal()
} }
NumberAnimation { NumberAnimation {
...@@ -101,7 +101,7 @@ Item { ...@@ -101,7 +101,7 @@ Item {
} }
ScriptAction { ScriptAction {
script: popup.hide() script: popup.showMinimized()
} }
} }
} }
......
...@@ -34,7 +34,6 @@ SearchBox { ...@@ -34,7 +34,6 @@ SearchBox {
// --------------------------------------------------------------------------- // ---------------------------------------------------------------------------
header: MouseArea { header: MouseArea {
height: { height: {
var height = SmartSearchBarStyle.header.addButtonHeight var height = SmartSearchBarStyle.header.addButtonHeight
return defaultContact.visible ? height + searchBox.entryHeight : height 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