« get me outta code hell

Use measureColumns in the appropriate places - tui-lib - Pure Node.js library for making visual command-line programs (ala vim, ncdu)
about summary refs log tree commit diff
path: root/ui/Sprite.js
diff options
context:
space:
mode:
authorFlorrie <towerofnix@gmail.com>2018-12-05 16:54:10 -0400
committerFlorrie <towerofnix@gmail.com>2018-12-05 16:54:10 -0400
commitab193ed3fe91078551c0020e681a191e7b26a122 (patch)
tree9167ab573f8f82399cb238ce95c8c9c9b541083f /ui/Sprite.js
parentd59d12196ad00a51d76e0ef4b6808ec2978f7649 (diff)
Use measureColumns in the appropriate places
TL;DR If you want to take into account the width of text, use
measureColumns instead of just checking the length of the text!
Diffstat (limited to 'ui/Sprite.js')
-rw-r--r--ui/Sprite.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/Sprite.js b/ui/Sprite.js
index 62b0172..701f1b8 100644
--- a/ui/Sprite.js
+++ b/ui/Sprite.js
@@ -60,7 +60,7 @@ module.exports = class Sprite extends DisplayElement {
   }
 
   get textureWidth() {
-    return Math.max(...this.texture.map(row => row.length))
+    return Math.max(...this.texture.map(row => ansi.measureColumns(row)))
   }
 
   get textureHeight() {