diff --git a/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml b/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml index 18d740f4f..5ea373399 100644 --- a/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml +++ b/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml @@ -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) + } }