From ae37c48308886b20658ff4eaf9a70c3c5a1fe66f Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Thu, 27 Apr 2017 11:50:10 +0200 Subject: [PATCH] fix(ui/modules/Linphone/Notifications/Notification): display correctly notifications (agggaaaiiinnn) --- .../ui/modules/Linphone/Notifications/Notification.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml b/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml index 5ea373399..5c209402a 100644 --- a/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml +++ b/linphone-desktop/ui/modules/Linphone/Notifications/Notification.qml @@ -20,7 +20,7 @@ DesktopPopup { } flags: { - return (Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint) & - (Qt.platform.os === 'osx' ? Qt.Window : Qt.Tool) + return (Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint) | + (Qt.platform.os === 'osx' ? Qt.Window : Qt.Popup) } }