Skip to content

Commit

Permalink
feat: update fullscreen background on treeland
Browse files Browse the repository at this point in the history
treeland need transparent

Log:
  • Loading branch information
justforlxz committed Aug 8, 2024
1 parent d1bca1e commit 7b96f4c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion qml/FullscreenFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ InputEventItem {

Rectangle {
anchors.fill: parent
color: folderGridViewPopup.visible ? Qt.rgba(0, 0, 0, 0.6) : Qt.rgba(0, 0, 0, 0.5)
color: folderGridViewPopup.visible ? Qt.rgba(0, 0, 0, 0.6)
: DesktopIntegration.isTreeLand()
? "transparent"
: Qt.rgba(0, 0, 0, 0.5)

MouseArea {
anchors.fill: parent
Expand Down

0 comments on commit 7b96f4c

Please sign in to comment.