From 315ba884a668f3641c22936d0184ce6848118068 Mon Sep 17 00:00:00 2001 From: Jianhui Zhao Date: Mon, 21 Jul 2025 21:41:55 +0800 Subject: [PATCH] ui: set cursorStyle to 'bar' Signed-off-by: Jianhui Zhao --- ui/src/components/RttyTerm.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/src/components/RttyTerm.vue b/ui/src/components/RttyTerm.vue index d8e4c83..105e6e7 100644 --- a/ui/src/components/RttyTerm.vue +++ b/ui/src/components/RttyTerm.vue @@ -253,6 +253,8 @@ const closed = () => { const openTerm = () => { term = new Terminal({ cursorBlink: true, + cursorStyle: 'bar', + cursorInactiveStyle: 'none', fontSize: 16 })