From b50d388f9e91c2be7e4731e7bd04fadeea333ded Mon Sep 17 00:00:00 2001 From: MacRimi Date: Mon, 24 Nov 2025 13:37:17 +0100 Subject: [PATCH] Update terminal-panel.tsx --- AppImage/components/terminal-panel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppImage/components/terminal-panel.tsx b/AppImage/components/terminal-panel.tsx index bb0f2c8..18d54e6 100644 --- a/AppImage/components/terminal-panel.tsx +++ b/AppImage/components/terminal-panel.tsx @@ -192,7 +192,7 @@ export const TerminalPanel: React.FC = ({ websocketUrl, onCl const handleMove = (moveEvent: MouseEvent) => { const deltaY = moveEvent.clientY - startY - const newHeight = Math.max(200, Math.min(1200, startHeight - deltaY)) + const newHeight = Math.max(200, Math.min(1200, startHeight + deltaY)) console.log("[v0] Moving", { clientY: moveEvent.clientY, deltaY, newHeight }) setTerminalHeight(newHeight)