Skip to content

Commit

Permalink
Merge pull request #4134 from Tyriar/fix_upper_one_eighth_block
Browse files Browse the repository at this point in the history
Fix width of upper 1/8 block char
  • Loading branch information
Tyriar committed Sep 23, 2022
2 parents 349acbb + 09a5da5 commit 50b1e10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/browser/renderer/CustomGlyphs.ts
Expand Up @@ -33,7 +33,7 @@ export const blockElementDefinitions: { [index: string]: IBlockVector[] | undefi
'▐': [{ x: 4, y: 0, w: 4, h: 8 }], // RIGHT HALF BLOCK

// Block elements (0x2594-0x2595)
'▔': [{ x: 0, y: 0, w: 9, h: 1 }], // UPPER ONE EIGHTH BLOCK
'▔': [{ x: 0, y: 0, w: 8, h: 1 }], // UPPER ONE EIGHTH BLOCK
'▕': [{ x: 7, y: 0, w: 1, h: 8 }], // RIGHT ONE EIGHTH BLOCK

// Terminal graphic characters (0x2596-0x259F)
Expand Down

0 comments on commit 50b1e10

Please sign in to comment.