mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-26 16:28:11 +00:00
fix(ui/modules/Common/Popup/DesktopPopup): replace hide call by showMinimized otherwise the popup is not visible on Ubuntu
This commit is contained in:
parent
23a8a9048b
commit
bdd17a36b4
2 changed files with 2 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue