dsh-neotui 0.0.28 → 0.0.29
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/package.json +1 -1
- package/src/views.js +1 -1
package/package.json
CHANGED
package/src/views.js
CHANGED
|
@@ -1365,7 +1365,7 @@ export class ChatView extends Widget {
|
|
|
1365
1365
|
this.pressCtx = this.pressInfo ? this.#anchorCtx(this.pressInfo, this.pressY) : null;
|
|
1366
1366
|
if (process.env.DSH_TUI_DEBUG_CLICK) {
|
|
1367
1367
|
const t = this.lines[this.pressY]?.map((g) => g.t).join("") ?? "";
|
|
1368
|
-
this.#clickLog(`press screenY=${ev.y} screenX=${ev.x} lineIdx=${this.pressY} mark=${JSON.stringify(this.pressInfo)} text="${t.slice(0, 40)}" scrollY=${this.view.scrollY} viewY=${this.view.y} viewH=${this.view.h}`);
|
|
1368
|
+
this.#clickLog(`press screenY=${ev.y} screenX=${ev.x} lineIdx=${this.pressY} mark=${JSON.stringify(this.pressInfo)} text="${t.slice(0, 40)}" scrollY=${this.view.scrollY} viewY=${this.view.y} viewH=${this.view.h} assumedH=${this.app.screen?.h} assumedW=${this.app.screen?.w} ttyRows=${process.stdout.rows} ttyCols=${process.stdout.columns} inputY=${this.input.y} inputH=${this.input.h} todoH=${this.todoHeight()} footerH=${this.app.footerHeight?.() ?? "?"}`);
|
|
1369
1369
|
}
|
|
1370
1370
|
return true;
|
|
1371
1371
|
}
|