From d9c611df931287a5faeeba4a1a219d3efa3e0a75 Mon Sep 17 00:00:00 2001 From: toast-ts <96593068+toast-ts@users.noreply.github.com> Date: Wed, 27 Mar 2024 08:10:36 +1100 Subject: [PATCH] Fix overlapping --- src/components/CanvasBuilder.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/CanvasBuilder.ts b/src/components/CanvasBuilder.ts index f36310d..0b72e94 100644 --- a/src/components/CanvasBuilder.ts +++ b/src/components/CanvasBuilder.ts @@ -29,10 +29,10 @@ export default class CanvasBuilder { const origin = [15, 65]; const size = [1300, 630]; const nodeWidth = size[0] / (data.length - 1); - this.ctx.globalAlpha = 0; + if (type === 'leaderboard') this.ctx.globalAlpha = 0; this.ctx.fillStyle = this.palette.background; this.ctx.fillRect(0, 0, this.canvas.width, this.canvas.height); - this.ctx.globalAlpha = 1; + if (type === 'leaderboard') this.ctx.globalAlpha = 1; // Grey horizontal lines this.ctx.lineWidth = 5;