refactor(ui): terminal

This commit is contained in:
Andras Bacsai
2025-06-17 09:28:07 +02:00
parent bd9f3d9a69
commit f7daddce58
12 changed files with 52 additions and 98 deletions

View File

@@ -514,7 +514,6 @@ export function initializeTerminalComponent() {
const currentRows = this.term.rows;
if (cols !== currentCols || rows !== currentRows) {
console.log(`[Terminal] Resizing terminal: ${currentCols}x${currentRows} -> ${cols}x${rows}`);
this.term.resize(cols, rows);
this.sendMessage({
resize: { cols: cols, rows: rows }