From f5547e892271e6dd88d9586671b0b82db6869cb0 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Fri, 27 May 2011 10:59:18 +0200 Subject: [PATCH] start custom colorsets at 30 slang keeps internally only 512 color pairs (JMAX_COLORS constant). --- newt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/newt.h b/newt.h index 103b139..65a566b 100644 --- a/newt.h +++ b/newt.h @@ -31,7 +31,7 @@ extern "C" { #define NEWT_COLORSET_ACTSELLISTBOX 23 #define NEWT_COLORSET_SELLISTBOX 24 -#define NEWT_COLORSET_CUSTOM(x) (1000 + (x)) +#define NEWT_COLORSET_CUSTOM(x) (30 + (x)) #define NEWT_ARG_LAST -100000 #define NEWT_ARG_APPEND -1 -- 2.47.3