all repos — openbox @ 42a58fcd2d8bcc79caa22872b712a779df354b6d

openbox fork - make it a bit more like ryudo

*^^*
Dana Jansens danakj@orodu.net
commit

42a58fcd2d8bcc79caa22872b712a779df354b6d

parent

de1679e3e2f05a20d7ac7daaddb38db0f2e3172b

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

jump to
M openbox/actions/directionalcyclewindows.copenbox/actions/directionalcyclewindows.c

@@ -65,11 +65,11 @@ !g_ascii_strcasecmp(s, "right"))

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); }