]> Dogcows Code - chaz/tint2/commitdiff
*fix* use ascending and descending instead of asc and desc
authorAndreas Fink <andreas.fink85@googlemail.com>
Sun, 27 Sep 2009 20:07:30 +0000 (20:07 +0000)
committerAndreas Fink <andreas.fink85@googlemail.com>
Sun, 27 Sep 2009 20:07:30 +0000 (20:07 +0000)
src/config.c

index b06abce944c61f4ce146c8d439a0b6fec49e1c5e..bb50b874fe98422f6044dbf63bee7e1712e6069f 100644 (file)
@@ -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;
This page took 0.028854 seconds and 4 git commands to generate.