Skip to content

Commit

Permalink
maybe here
Browse files Browse the repository at this point in the history
  • Loading branch information
rooklift committed Sep 24, 2023
1 parent de04482 commit 2401880
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/src/renderer/55_winrate_graph.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ function NewGrapher() {

graphctx.strokeStyle = "white";
graphctx.lineWidth = config.graph_line_width;
graphctx.lineJoin = "round";
graphctx.setLineDash([]);

for (let run of runs.normal_runs) {
graphctx.lineJoin = "round";
graphctx.beginPath();
graphctx.moveTo(run[0].x1, run[0].y1);
for (let edge of run) {
Expand Down

0 comments on commit 2401880

Please sign in to comment.