From: Miroslav Lichvar Date: Fri, 27 May 2011 08:59:18 +0000 (+0200) Subject: start custom colorsets at 30 X-Git-Tag: r0-52-13~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f5547e892271e6dd88d9586671b0b82db6869cb0;p=thirdparty%2Fnewt.git start custom colorsets at 30 slang keeps internally only 512 color pairs (JMAX_COLORS constant). --- 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