Skip to content

Commit

Permalink
fix rounded corners in the call notification
Browse files Browse the repository at this point in the history
also enforce a non-transparent base background colour (e.g. for Win11)

Signed-off-by: Jyrki Gadinger <[email protected]>
  • Loading branch information
nilsding authored and backportbot[bot] committed Feb 13, 2025
1 parent 2c893a6 commit e698815
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gui/tray/CallNotificationDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit e698815

Please sign in to comment.