Merge pull request #7851 from nextcloud/backport/7849/stable-3.16

[stable-3.16] fix rounded corners in the call notification
This commit is contained in:
Jyrki Gadinger 2025-02-13 10:15:59 +01:00 committed by GitHub
commit ee7b4e7b23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ import Qt5Compat.GraphicalEffects
ApplicationWindow {
id: root
color: palette.base
color: "transparent"
flags: Qt.Dialog | Qt.FramelessWindowHint | Qt.WindowStaysOnTopHint
readonly property int windowSpacing: 10
@ -89,7 +89,7 @@ ApplicationWindow {
width: parent.width
height: contentLayout.height + (root.windowSpacing * 2)
radius: Systray.useNormalWindow ? 0.0 : Style.trayWindowRadius
color: palette.base
color: Style.colorWithoutTransparency(palette.base)
border.width: Style.trayWindowBorderWidth
border.color: palette.dark
clip: true