Commit adf57919 authored by Ronan Abhamon's avatar Ronan Abhamon

fix(ui/modules/Linphone/Notifications/Notification): display correctly notifications on mac os x

parent 368a4eb1
......@@ -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)
}
}
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