Merge pull request #7849 from nextcloud/bugfix/rounded-talk-notification-corners

fix rounded corners in the call notification
This commit is contained in:
Matthieu Gallien 2025-02-13 09:36:17 +01:00 committed by GitHub
commit 1c324c0964
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