Skip to content

Commit 2126542

Browse files
committed
fix blink and invert
1 parent b86cfe2 commit 2126542

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/XTerm.NET/InputHandler.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,6 +1219,9 @@ private void CharAttributes(Params parameters)
12191219
case 24: // Not underline
12201220
_curAttr.SetUnderline(false);
12211221
break;
1222+
case 25: // Not blink
1223+
_curAttr.SetBlink(false);
1224+
break;
12221225
case 27: // Not inverse
12231226
_curAttr.SetInverse(false);
12241227
break;

0 commit comments

Comments
 (0)