Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions qml/FullscreenFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ InputEventItem {
repeat: false
}

background: Image {
source: DesktopIntegration.backgroundUrl

background: Item {
Rectangle {
anchors.fill: parent
color: folderGridViewPopup.visible ? Qt.rgba(0, 0, 0, 0.6) : Qt.rgba(0, 0, 0, 0.5)
Expand Down
17 changes: 17 additions & 0 deletions qml/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,23 @@ QtObject {
// Fullscreen mode: always assume dark theme
DWindow.themeType: ApplicationHelper.DarkType

color: "transparent"

StyledBehindWindowBlur {
control: parent
anchors.fill: parent
blendColor: {
if (valid) {
return DStyle.Style.control.selectColor(undefined,
Qt.rgba(235 / 255.0, 235 / 255.0, 235 / 255.0, windowedFrameWindow.blendColorAlpha(0.6)),
Qt.rgba(0, 0, 0, windowedFrameWindow.blendColorAlpha(85 / 255)))
}
return DStyle.Style.control.selectColor(undefined,
DStyle.Style.behindWindowBlur.lightNoBlurColor,
DStyle.Style.behindWindowBlur.darkNoBlurColor)
}
}

onVisibleChanged: {
if (visible) {
requestActivate()
Expand Down