*fix* use ascending and descending instead of asc and desc

git-svn-id: http://tint2.googlecode.com/svn/trunk@206 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
Andreas.Fink85 2009-09-27 20:07:30 +00:00
parent a372cfbd60
commit e4b8b4d755

View 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;