From ec80e09b0b6741cec93cbbdb761b0a4266e2f2da Mon Sep 17 00:00:00 2001 From: o9000 Date: Fri, 23 Jan 2015 19:19:23 +0000 Subject: [PATCH] Systray: option to configure monitor: start from 1 to be consistent with panel_monitor git-svn-id: http://tint2.googlecode.com/svn/trunk@668 121b4492-b84c-0410-8b4c-0d4edfb3f3cc --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 31b0759..b73e0a0 100644 --- a/src/config.c +++ b/src/config.c @@ -564,7 +564,7 @@ void add_entry (char *key, char *value) systray.brightness = atoi(value3); } else if (strcmp(key, "systray_monitor") == 0) { - systray_monitor = atoi(value); + systray_monitor = atoi(value) - 1; } /* Launcher */