Skip to content

Commit

Permalink
fix: Insufficient transparency of the outer border
Browse files Browse the repository at this point in the history
Modify the transparency of the window's outer border

Issue: linuxdeepin/developer-center#8342
  • Loading branch information
mhduiy committed Jul 12, 2024
1 parent 9a7db62 commit 2b072d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qml/Main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ QtObject {
DWindow.enableSystemResize: false
DWindow.enableSystemMove: false
DWindow.enableBlurWindow: true
DWindow.borderColor: DTK.themeType === ApplicationHelper.DarkType ? Qt.rgba(0, 0, 0, windowedFrameWindow.blendColorAlpha(0.6) + 10 / 255) : Qt.rgba(0, 0, 0, 0.15)
DWindow.borderColor: DTK.themeType === ApplicationHelper.DarkType ? Qt.rgba(0, 0, 0, windowedFrameWindow.blendColorAlpha(0.6) + 20 / 255) : Qt.rgba(0, 0, 0, 0.15)

onVisibleChanged: {
if (visible) {
Expand Down

0 comments on commit 2b072d8

Please sign in to comment.