From f27e1d07fced949f6186ef57fcb8869e70c7d1c7 Mon Sep 17 00:00:00 2001 From: nicm Date: Sun, 19 Feb 2017 07:55:11 +0000 Subject: Add SGR 28 to clear hidden flag. --- input.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'input.c') diff --git a/input.c b/input.c index 351729c7..0e71f656 100644 --- a/input.c +++ b/input.c @@ -1779,6 +1779,9 @@ input_csi_dispatch_sgr(struct input_ctx *ictx) case 27: gc->attr &= ~GRID_ATTR_REVERSE; break; + case 28: + gc->attr &= ~GRID_ATTR_HIDDEN; + break; case 30: case 31: case 32: -- cgit