From ab193ed3fe91078551c0020e681a191e7b26a122 Mon Sep 17 00:00:00 2001 From: Florrie Date: Wed, 5 Dec 2018 16:54:10 -0400 Subject: 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! --- ui/Sprite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/Sprite.js') 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() { -- cgit 1.3.0-6-gf8a5