summaryrefslogtreecommitdiff
path: root/src/fe-text/gui-textwidget.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe-text/gui-textwidget.c')
-rw-r--r--src/fe-text/gui-textwidget.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fe-text/gui-textwidget.c b/src/fe-text/gui-textwidget.c
index ce2b58a5..f3604260 100644
--- a/src/fe-text/gui-textwidget.c
+++ b/src/fe-text/gui-textwidget.c
@@ -80,6 +80,10 @@ static gchar *gui_window_line2text(LINE_REC *line)
color &= 0xfff0;
color |= 8|ATTR_COLOR8;
break;
+ case LINE_CMD_BLINK:
+ color |= 0x80;
+ g_string_sprintfa(str, "\003%c%c", (color & 0x0f)+1, ((color & 0xf0) >> 4)+1);
+ break;
case LINE_CMD_INDENT:
break;
}