Skip to content

Commit

Permalink
fix: disable regular border if custom border is enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
luisbocanegra committed Oct 31, 2024
1 parent 11f8e91 commit 21ed741
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package/contents/ui/main.qml
Original file line number Diff line number Diff line change
Expand Up @@ -710,7 +710,7 @@ PlasmoidItem {
visible: false
border {
color: borderRec.borderColor
width: cfg.border.width || -1
width: !cfg.border.customSides ? cfg.border.width || -1 : 0
}
corners {
topLeftRadius: topLeftRadius
Expand Down

0 comments on commit 21ed741

Please sign in to comment.