Skip to content

Commit 8d7f082

Browse files
committed
#82: fix breeze icons fracture scaling
1 parent ee23f72 commit 8d7f082

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package/contents/ui/theme/BreezeWindowControlButtonIcon.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Canvas {
3939
ctx.fillStyle = foregroundColor;
4040
ctx.lineJoin = "miter";
4141
ctx.lineCap = "round";
42-
ctx.lineWidth = Math.max(1, 20 / width);
42+
ctx.lineWidth = Math.max(1, 22.0 / width);
4343
switch (buttonType) {
4444
case WindowControlButton.Type.MinimizeButton:
4545
ctx.moveTo(4, 7);

package/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"Id": "com.github.antroids.application-title-bar",
1313
"Name": "Application Title Bar",
1414
"License": "GPL-3.0+",
15-
"Version": "0.8.6",
15+
"Version": "0.8.7",
1616
"Website": "https://github.com/antroids/application-title-bar",
1717
"FormFactors": [
1818
"desktop"

0 commit comments

Comments
 (0)