*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:
parent
a372cfbd60
commit
e4b8b4d755
1 changed files with 2 additions and 2 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue