From 8816fe5b39317bd3a4970f376a2b7950e370d7f5 Mon Sep 17 00:00:00 2001 From: Eri Date: Sat, 19 Jul 2025 10:52:52 +0200 Subject: [PATCH] fix scrolling in chatbox --- lydia.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/lydia.js b/lydia.js index 91a3183..760afbf 100644 --- a/lydia.js +++ b/lydia.js @@ -40,9 +40,8 @@ const faceBox = blessed.box({ top: 0, left: 1, width: "100%", - height: "90%", - scrollable: true, - alwaysScroll: true, + height: 9, + scrollable: false, mouse: true, keys: true, vi: true, @@ -54,7 +53,7 @@ const chatBox = blessed.box({ top: 9, left: 1, width: "100%", - height: "90%", + bottom: 3, scrollable: true, alwaysScroll: true, mouse: true,