all repos — tint2 @ e4b8b4d7552140f0cfdabe63405fd0924f579f0d

fork of the tint2 desktop panel for my custom setup - only minimized windows across all desktops for the taskbar

*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
Andreas.Fink85 Andreas.Fink85@121b4492-b84c-0410-8b4c-0d4edfb3f3cc
commit

e4b8b4d7552140f0cfdabe63405fd0924f579f0d

parent

a372cfbd60222d80f3ebb53cf09ae1837e99e968

1 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/config.csrc/config.c

@@ -573,9 +573,9 @@ memcpy(&systray.area.pix.back, &a->pix.back, sizeof(Color));

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;