Displaying 3 results from an estimated 3 matches for "rotate_to_opt".
2006 Oct 25
2
[PATCH] Edge buttons
...FALSE;
o->value.action.edgeMask = 0;
+ o->value.action.edgeButton = -1;
o->value.action.state = CompActionStateInitEdge;
o->value.action.state |= CompActionStateInitEdgeDnd;
o->value.action.state |= CompActionStateInitKey;
@@ -1837,6 +1842,7 @@ #define ROTATE_TO_OPTION(n) \
o->value.action.terminate = 0; \
o->value.action.bell = FALSE; \
o->value.action.edgeMask = 0; \
+ o->value.action.edgeButton = -1; \
o->value.action.state = CompActionStateInitKey; \
o->value.action.state |...
2006 Nov 08
2
bug in today's git snapshot with maximizing windows
...= 0;
> + o->value.action.edgeButton = -1;
> o->value.action.state = CompActionStateInitEdge;
> o->value.action.state |= CompActionStateInitEdgeDnd;
> o->value.action.state |= CompActionStateInitKey;
> @@ -1837,6 +1842,7 @@ #define ROTATE_TO_OPTION(n) \
> o->value.action.terminate = 0; \
> o->value.action.bell = FALSE; \
> o->value.action.edgeMask = 0; \
> + o->value.action.edgeButton = -1;...
2006 Oct 16
2
Edge + Mouse button draft patches
...e |= CompActionStateInitButton;
o->value.action.type = CompBindingTypeKey;
+ o->value.action.button.button = 0;
o->value.action.key.modifiers = ROTATE_RIGHT_MODIFIERS_DEFAULT;
o->value.action.key.keycode =
XKeysymToKeycode (display,
@@ -1902,6 +1903,7 @@ #define ROTATE_TO_OPTION(n) \
o->value.action.initiate = rotateEdgeFlipLeft;
o->value.action.terminate = rotateFlipTerminate;
o->value.action.bell = FALSE;
+ o->value.action.button.button = 0;
o->value.action.edgeMask = 1 << SCREEN_EDGE_LEFT;
o->value.act...