diff options
author | Florrie <towerofnix@gmail.com> | 2019-10-23 11:01:49 -0300 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2019-10-23 11:02:07 -0300 |
commit | 695149a96299f9f1d3d0cc0747a7390a82d69525 (patch) | |
tree | 06d5eb804408e5dc0cd05ea8f52c1c2f8bc0f320 /util | |
parent | 074a49b1f14739c42a38333756f94052d85d1a06 (diff) |
Correctly enable ANSI compression in tuiApp util
Diffstat (limited to 'util')
-rw-r--r-- | util/tui-app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/tui-app.js b/util/tui-app.js index a695e57..fe1cd03 100644 --- a/util/tui-app.js +++ b/util/tui-app.js @@ -14,7 +14,7 @@ module.exports = async function tuiApp(callback) { const flushable = new Flushable(process.stdout, true); - const root = new Root(interfacer); + const root = new Root(interfacer, flushable); const size = await interfacer.getScreenSize(); root.w = size.width; |