From 7f24020cbe477548795754f2f7f01aafc2cd3cb8 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 21 Jan 2012 08:23:12 +0000 Subject: Add strings to allow the aixterm bright colours to be used when configuring colours, requested by Elliott Cable a few months ago. --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'input.c') diff --git a/input.c b/input.c index e6c63207..957053da 100644 --- a/input.c +++ b/input.c @@ -1436,7 +1436,7 @@ input_csi_dispatch_sgr(struct input_ctx *ictx) case 106: case 107: gc->flags &= ~GRID_FLAG_BG256; - gc->bg = n; + gc->bg = n - 10; break; } } -- cgit