Skip to content

Commit

Permalink
Changed one of progress bar symbols
Browse files Browse the repository at this point in the history
  • Loading branch information
vkostyanetsky committed Mar 7, 2024
1 parent 54a5d71 commit 7d1dca8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/codeblocks/fastimer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export default class FastimerCodeBlock {
let left_len = 40 - done_len

let left = "-".repeat(left_len)
let done = "|".repeat(done_len)
let done = "#".repeat(done_len)
let tail = Math.floor(percent)

lines.push(`> \`${done}${left}\` ${tail}%`)
Expand Down

0 comments on commit 7d1dca8

Please sign in to comment.