From 267014cbfe584ff9a1bc74d671f8aaa27251fd49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20G=C3=B6ttsche?= Date: Sat, 21 Nov 2020 21:40:08 +0100 Subject: Add support to change numeric options in settings screen Like delay or highlightDelaySecs --- ColorsPanel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ColorsPanel.c') diff --git a/ColorsPanel.c b/ColorsPanel.c index 9da71545..69927092 100644 --- a/ColorsPanel.c +++ b/ColorsPanel.c @@ -10,11 +10,11 @@ in the source distribution for its full text. #include #include -#include "CheckItem.h" #include "CRT.h" #include "FunctionBar.h" #include "Header.h" #include "Object.h" +#include "OptionItem.h" #include "ProvideCurses.h" #include "RichString.h" #include "Vector.h" @@ -103,7 +103,7 @@ ColorsPanel* ColorsPanel_new(Settings* settings, ScreenManager* scr) { Panel_setHeader(super, "Colors"); for (int i = 0; ColorSchemeNames[i] != NULL; i++) { - Panel_add(super, (Object*) CheckItem_newByVal(xStrdup(ColorSchemeNames[i]), false)); + Panel_add(super, (Object*) CheckItem_newByVal(ColorSchemeNames[i], false)); } CheckItem_set((CheckItem*)Panel_get(super, settings->colorScheme), true); return this; -- cgit v1.2.3