Scrolling through tasks by schattenprinz

git-svn-id: http://tint2.googlecode.com/svn/trunk@275 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
thilor77
2009-11-18 05:13:38 +00:00
parent c7346fc56b
commit f43facc277
5 changed files with 71 additions and 1 deletions

View File

@@ -173,6 +173,10 @@ void get_action (char *event, int *action)
*action = DESKTOP_LEFT;
else if (strcmp (event, "desktop_right") == 0)
*action = DESKTOP_RIGHT;
else if (strcmp (event, "next_task") == 0)
*action = NEXT_TASK;
else if (strcmp (event, "prev_task") == 0)
*action = PREV_TASK;
}