commit 5a6af511ca7e3c6c87966db320d49ff0d7d2a9be
parent 4303a4421009a2f68fc59c775f83230b882ed6c2
Author: Frederic Cambus <fred@statdns.com>
Date: Wed, 26 Sep 2018 12:32:53 +0200
Check if iCE colors are enabled before incrementing background color in blink mode
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/loaders/ansi.c b/src/loaders/ansi.c
@@ -302,7 +302,7 @@ int ansilove_ansi(struct ansilove_ctx *ctx, struct ansilove_options *options)
if (seqValue == 5)
{
- if (!workbench)
+ if (!workbench && options->icecolors)
background += 8;
blink = true;