fix(ui/modules/Common/Popup/DesktopPopup): hide popup correctly

This commit is contained in:
Ronan Abhamon 2017-02-24 10:23:04 +01:00
parent 131993bdba
commit 093f0709d1

View file

@ -92,7 +92,10 @@ Item {
to: ''
ScriptAction {
script: popup.showMinimized()
script: {
popup.hide()
popup.showMinimized()
}
}
}
]