Add SGR 28 to clear hidden flag.

pull/501/merge
nicm 2017-02-19 07:55:11 +00:00
parent 82db1fa9e5
commit f27e1d07fc
1 changed files with 3 additions and 0 deletions

View File

@ -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: