Skip to content

Commit

Permalink
fix(ui): Fix cutting line being invisible when using the light theme
Browse files Browse the repository at this point in the history
Thanks @vivia
  • Loading branch information
Hypfer committed Sep 2, 2024
1 parent ddcf3e1 commit a2a1d40
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ class CuttingLineClientStructure extends LineClientStructure {
if (this.active) {
ctx.setLineDash([
considerHiDPI(15),
considerHiDPI(5)
considerHiDPI(10)
]);
}

ctx.shadowColor = "rgba(0,0,0, 1)";
ctx.shadowBlur = considerHiDPI(2);
}

getType(): string {
Expand Down

0 comments on commit a2a1d40

Please sign in to comment.