From ef66a02f238bedccdefd2a5e60ee29c1325c51aa Mon Sep 17 00:00:00 2001 From: Florrie Date: Thu, 16 Jul 2020 14:14:21 -0300 Subject: don't let WrapLabel text extend one letter too far I Am Very Good At Managing Npm Repositories --- package-lock.json | 2 +- package.json | 2 +- ui/WrapLabel.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index e2796f0..54eefb0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "tui-lib", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 8d4a1d3..3a10b24 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tui-lib", - "version": "0.3.0", + "version": "0.3.1", "description": "terminal ui library", "main": "index.js", "repository": "https://notabug.org/towerofnix/tui-lib.git", diff --git a/ui/WrapLabel.js b/ui/WrapLabel.js index d40b29d..d621a49 100644 --- a/ui/WrapLabel.js +++ b/ui/WrapLabel.js @@ -29,7 +29,7 @@ module.exports = class WrapLabel extends Label { return [] } - return wrap(this.text, this.w).map(l => l.trim()) + return wrap(this.text, this.w - 1).map(l => l.trim()) } get h() { -- cgit 1.3.0-6-gf8a5