blun-king-cli 7.2.7 → 7.2.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/chat.js +1 -1
- package/package.json +1 -1
package/lib/chat.js
CHANGED
|
@@ -102,7 +102,7 @@ function startChat() {
|
|
|
102
102
|
var rows = getRows();
|
|
103
103
|
var cols = getCols();
|
|
104
104
|
var t = ui.getTheme();
|
|
105
|
-
var panelTop = rows - INPUT_PANEL_HEIGHT +
|
|
105
|
+
var panelTop = rows - INPUT_PANEL_HEIGHT + 1; // panel at top of reserved area, gap below
|
|
106
106
|
var inner = cols - 2;
|
|
107
107
|
|
|
108
108
|
// Permission label
|