diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2012-03-17 21:37:36 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2012-03-17 21:37:36 +0000 |
commit | 87d092d2262031cfb714069525d9d7ec894b7fcc (patch) | |
tree | 15799715189edd08cab2ed16b4302296f0f67460 | |
parent | e87d4b43abdba32698ed44590f7fd84cf6891c8d (diff) | |
download | rtmux-87d092d2262031cfb714069525d9d7ec894b7fcc.tar.gz rtmux-87d092d2262031cfb714069525d9d7ec894b7fcc.tar.bz2 rtmux-87d092d2262031cfb714069525d9d7ec894b7fcc.zip |
Michael Krysiak points out that some terminals (eg mintty) have cursor
styles 5 and 6 too, so allow them to be set.
-rw-r--r-- | screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -96,7 +96,7 @@ screen_reset_tabs(struct screen *s) void screen_set_cursor_style(struct screen *s, u_int style) { - if (style <= 4) + if (style <= 6) s->cstyle = style; } |