mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 23:28:09 +00:00
fix(ui/modules/Linphone/Notifications/Notification): display correctly notifications on mac os x
This commit is contained in:
parent
368a4eb132
commit
adf5791954
1 changed files with 4 additions and 1 deletions
|
|
@ -19,5 +19,8 @@ DesktopPopup {
|
|||
deleteNotification(notification)
|
||||
}
|
||||
|
||||
flags: Qt.Tool | Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint
|
||||
flags: {
|
||||
return (Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint) &
|
||||
(Qt.platform.os === 'osx' ? Qt.Window : Qt.Tool)
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue