Skip to content

Commit 21ed741

Browse files
committed
fix: disable regular border if custom border is enabled
1 parent 11f8e91 commit 21ed741

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

package/contents/ui/main.qml

+1-1
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ PlasmoidItem {
710710
visible: false
711711
border {
712712
color: borderRec.borderColor
713-
width: cfg.border.width || -1
713+
width: !cfg.border.customSides ? cfg.border.width || -1 : 0
714714
}
715715
corners {
716716
topLeftRadius: topLeftRadius

0 commit comments

Comments
 (0)