From: Andreas Fink Date: Sun, 27 Sep 2009 20:07:30 +0000 (+0000) Subject: *fix* use ascending and descending instead of asc and desc X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=85dd87dec827c67658156ff9cd6369e8f4400a65;p=chaz%2Ftint2 *fix* use ascending and descending instead of asc and desc --- diff --git a/src/config.c b/src/config.c index b06abce..bb50b87 100644 --- a/src/config.c +++ b/src/config.c @@ -573,9 +573,9 @@ void add_entry (char *key, char *value) memcpy(&systray.area.pix.border, &a->pix.border, sizeof(Border)); } else if (strcmp(key, "systray_sort") == 0) { - if (strcmp(value, "desc") == 0) + if (strcmp(value, "descending") == 0) systray.sort = -1; - else if (strcmp(value, "asc") == 0) + else if (strcmp(value, "ascending") == 0) systray.sort = 1; else if (strcmp(value, "left2right") == 0) systray.sort = 2;