From 044bb79ae9ce163c2f3e4b90904c7e8de73a3a07 Mon Sep 17 00:00:00 2001 From: ssongliu <73214554+ssongliu@users.noreply.github.com> Date: Fri, 7 Jul 2023 11:18:11 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A3=E5=86=B3=E7=BB=88=E7=AB=AF?= =?UTF-8?q?=E5=AD=97=E4=BD=93=E5=A4=A7=E5=B0=8F=E5=8F=98=E5=8C=96=E6=97=B6?= =?UTF-8?q?=E5=86=85=E5=AE=B9=E6=98=BE=E7=A4=BA=E4=B8=8D=E5=85=A8=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20(#1572)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/terminal/index.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/components/terminal/index.vue b/frontend/src/components/terminal/index.vue index 6362da68a..1f48ef5fc 100644 --- a/frontend/src/components/terminal/index.vue +++ b/frontend/src/components/terminal/index.vue @@ -124,6 +124,7 @@ const onTermWheel = (event: WheelEvent) => { } else { term.value.options.fontSize = term.value.options.fontSize + 1; } + changeTerminalSize(); } };