Skip to content

Commit

Permalink
fix: FolderGridViewPopup corner abnormality
Browse files Browse the repository at this point in the history
Do not set transparency for windows in kwin

Issue: linuxdeepin/developer-center#10219
  • Loading branch information
mhduiy authored and deepin-bot[bot] committed Aug 8, 2024
1 parent f7598e9 commit 1997f63
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qml/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,8 @@ QtObject {
objectName: "FullscreenFrameApplicationWindow"
title: "Fullscreen Launchpad"
visible: LauncherController.visible && (LauncherController.currentFrame !== "WindowedFrame")
color: "transparent"
// Set transparent on kwin will cause abnormal rounded corners in FolderPopup, Bug: 10219
color: DesktopIntegration.isTreeLand() ? "transparent" : undefined

DLayerShellWindow.anchors: DLayerShellWindow.AnchorBottom | DLayerShellWindow.AnchorTop | DLayerShellWindow.AnchorLeft | DLayerShellWindow.AnchorRight
DLayerShellWindow.layer: DLayerShellWindow.LayerTop
Expand Down

0 comments on commit 1997f63

Please sign in to comment.