Skip to content

Commit

Permalink
fix: folderGridViewPopup outBorder color is too dark
Browse files Browse the repository at this point in the history
Opacity: 0.5 -> 0.4

Log:
  • Loading branch information
mhduiy committed Aug 14, 2024
1 parent 494ee66 commit 068b796
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion qml/FolderGridViewPopup.qml
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,13 @@ Popup {
normalDark: isWindowedMode ? Qt.rgba(20/255, 20/255, 20/255, 0.4) : Qt.rgba(1.0, 1.0, 1.0, 0.2)
}
dropShadowColor: null
outsideBorderColor: isWindowedMode ? DStyle.Style.floatingPanel.outsideBorder : null
outsideBorderColor: isWindowedMode ? windowedOutBorderPalette : null
insideBorderColor: isWindowedMode ? DStyle.Style.floatingPanel.insideBorder : null
}

Palette {
id: windowedOutBorderPalette
normal: Qt.rgba(0, 0, 0, 0.06)
normalDark: Qt.rgba(0, 0, 0, 0.4)
}
}

0 comments on commit 068b796

Please sign in to comment.