From bf6ca2902047bdd633777e3c6bf265ada3681964 Mon Sep 17 00:00:00 2001 From: Matthieu Gallien Date: Tue, 27 Aug 2024 19:08:48 +0200 Subject: [PATCH] let main dialog have a transparent background again will fix white corners appearing below the main dialog content Signed-off-by: Matthieu Gallien --- src/gui/tray/Window.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/tray/Window.qml b/src/gui/tray/Window.qml index 8a38ffef1..f8831d6d4 100644 --- a/src/gui/tray/Window.qml +++ b/src/gui/tray/Window.qml @@ -35,6 +35,7 @@ ApplicationWindow { width: Systray.useNormalWindow ? Style.trayWindowHeight : Style.trayWindowWidth height: Style.trayWindowHeight flags: Systray.useNormalWindow ? Qt.Window : Qt.Dialog | Qt.FramelessWindowHint + color: 'transparent' readonly property int maxMenuHeight: Style.trayWindowHeight - Style.trayWindowHeaderHeight - 2 * Style.trayWindowBorderWidth