cleanup and add desktop_right/desktop_left action on task (by jackp)

git-svn-id: http://tint2.googlecode.com/svn/trunk@162 121b4492-b84c-0410-8b4c-0d4edfb3f3cc
This commit is contained in:
lorthiois@bbsoft.fr
2009-08-29 15:14:55 +00:00
parent b9ee10d818
commit d99d51d948
4 changed files with 26 additions and 153 deletions

View File

@@ -228,6 +228,10 @@ void get_action (char *event, int *action)
*action = TOGGLE_ICONIFY;
else if (strcmp (event, "maximize_restore") == 0)
*action = MAXIMIZE_RESTORE;
else if (strcmp (event, "desktop_left") == 0)
*action = DESKTOP_LEFT;
else if (strcmp (event, "desktop_right") == 0)
*action = DESKTOP_RIGHT;
}