We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4ab72d commit 9ef81beCopy full SHA for 9ef81be
package/contents/ui/main.qml
@@ -843,10 +843,10 @@ PlasmoidItem {
843
horizontal: main.horizontal
844
unifyBgType: unifyBgType
845
corners: {
846
- "topLeftRadius": rect.topLeftRadius,
847
- "topRightRadius": rect.topRightRadius,
848
- "bottomLeftRadius": rect.bottomLeftRadius,
849
- "bottomRightRadius": rect.bottomRightRadius
+ "topLeftRadius": Math.max(rect.topLeftRadius - cfg.border.width, 0),
+ "topRightRadius": Math.max(rect.topRightRadius - cfg.border.width, 0),
+ "bottomLeftRadius": Math.max(rect.bottomLeftRadius - cfg.border.width, 0),
+ "bottomRightRadius": Math.max(rect.bottomRightRadius - cfg.border.width, 0)
850
}
851
cfgBorder: cfg.borderSecondary
852
borderColor: {
0 commit comments