*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:
@@ -573,9 +573,9 @@ void add_entry (char *key, char *value)
|
|||||||
memcpy(&systray.area.pix.border, &a->pix.border, sizeof(Border));
|
memcpy(&systray.area.pix.border, &a->pix.border, sizeof(Border));
|
||||||
}
|
}
|
||||||
else if (strcmp(key, "systray_sort") == 0) {
|
else if (strcmp(key, "systray_sort") == 0) {
|
||||||
if (strcmp(value, "desc") == 0)
|
if (strcmp(value, "descending") == 0)
|
||||||
systray.sort = -1;
|
systray.sort = -1;
|
||||||
else if (strcmp(value, "asc") == 0)
|
else if (strcmp(value, "ascending") == 0)
|
||||||
systray.sort = 1;
|
systray.sort = 1;
|
||||||
else if (strcmp(value, "left2right") == 0)
|
else if (strcmp(value, "left2right") == 0)
|
||||||
systray.sort = 2;
|
systray.sort = 2;
|
||||||
|
|||||||
Reference in New Issue
Block a user