From 252bd0e4799252aa14475d6fa4a3480230631ad5 Mon Sep 17 00:00:00 2001 From: Rolf Ahrenberg Date: Thu, 4 Mar 2010 22:49:19 +0200 Subject: [PATCH] Added parsing for a missing setup option. --- femon.c | 1 + 1 file changed, 1 insertion(+) diff --git a/femon.c b/femon.c index 83f3430..360bfdc 100644 --- a/femon.c +++ b/femon.c @@ -112,6 +112,7 @@ bool cPluginFemon::SetupParse(const char *Name, const char *Value) else if (!strcasecmp(Name, "Position")) femonConfig.position = atoi(Value); else if (!strcasecmp(Name, "Skin")) femonConfig.skin = atoi(Value); else if (!strcasecmp(Name, "Theme")) femonConfig.theme = atoi(Value); + else if (!strcasecmp(Name, "Downscale")) femonConfig.downscale = atoi(Value); else if (!strcasecmp(Name, "RedLimit")) femonConfig.redlimit = atoi(Value); else if (!strcasecmp(Name, "GreenLimit")) femonConfig.greenlimit = atoi(Value); else if (!strcasecmp(Name, "UpdateInterval")) femonConfig.updateinterval = atoi(Value);