diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-07-11 21:43:57 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-07-11 21:43:57 +0000 |
| commit | 42a58fcd2d8bcc79caa22872b712a779df354b6d (patch) | |
| tree | d5e00a5c76e9b783bf3595661def725b94a350bb /openbox | |
| parent | de1679e3e2f05a20d7ac7daaddb38db0f2e3172b (diff) | |
*^^*
Diffstat (limited to 'openbox')
| -rw-r--r-- | openbox/actions/directionalcyclewindows.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openbox/actions/directionalcyclewindows.c b/openbox/actions/directionalcyclewindows.c index 44441c93..3eea00d1 100644 --- a/openbox/actions/directionalcyclewindows.c +++ b/openbox/actions/directionalcyclewindows.c @@ -65,11 +65,11 @@ static gpointer setup_func(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node) o->direction = OB_DIRECTION_EAST; else if (!g_ascii_strcasecmp(s, "south") || !g_ascii_strcasecmp(s, "down")) - o->direction = OB_DIRECTION_NORTH; + o->direction = OB_DIRECTION_SOUTH; else if (!g_ascii_strcasecmp(s, "southwest")) - o->direction = OB_DIRECTION_NORTHWEST; + o->direction = OB_DIRECTION_SOUTHWEST; else if (!g_ascii_strcasecmp(s, "southeast")) - o->direction = OB_DIRECTION_NORTHEAST; + o->direction = OB_DIRECTION_SOUTHEAST; g_free(s); } |
