From 9c67eafebd4030c5109b3507a9e0bbaf3bb19e22 Mon Sep 17 00:00:00 2001 From: cy384 Date: Mon, 11 Jan 2021 17:24:45 -0500 Subject: [PATCH] fix terminal property settings fallthrough --- ssheven-console.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ssheven-console.c b/ssheven-console.c index 016d734..2ec5e9a 100644 --- a/ssheven-console.c +++ b/ssheven-console.c @@ -543,15 +543,15 @@ int settermprop(VTermProp prop, VTermValue *val, void *user) case VTERM_PROP_CURSORVISIBLE: // bool con.cursor_visible = val->boolean; return 1; - case VTERM_PROP_ICONNAME: // string - case VTERM_PROP_REVERSE: //bool - case VTERM_PROP_CURSORSHAPE: // number case VTERM_PROP_MOUSE: // number // record whether or not the terminal wants mouse clicks con.mouse_mode = (val->number | VTERM_MOUSE_WANT_CLICK) ? CLICK_SEND : CLICK_SELECT; return 1; - case VTERM_PROP_CURSORBLINK: // bool case VTERM_PROP_ALTSCREEN: // bool + case VTERM_PROP_ICONNAME: // string + case VTERM_PROP_REVERSE: //bool + case VTERM_PROP_CURSORSHAPE: // number + case VTERM_PROP_CURSORBLINK: // bool default: break; }