aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorokan2012-05-16 01:09:17 +0000
committerokan2012-05-16 01:09:17 +0000
commit0d42809e06455c0a8cd1f170f15e81c812e7ef61 (patch)
tree0e24de841f00362538546f9550c56edd3d006672 /client.c
parentec7333262c7838cbfe2490d704f53de385dbace2 (diff)
downloadcwm-0d42809e06455c0a8cd1f170f15e81c812e7ef61.tar.gz
cycle through other common cycling modifiers; based on a diff from
Alexander Polakov. ok sthen@
Diffstat (limited to '')
-rw-r--r--client.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/client.c b/client.c
index 09966c3..89495c3 100644
--- a/client.c
+++ b/client.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: client.c,v 1.93 2012/05/13 15:17:13 okan Exp $
+ * $OpenBSD: client.c,v 1.94 2012/05/16 01:09:17 okan Exp $
*/
#include <sys/param.h>
@@ -644,6 +644,18 @@ client_cycle(struct screen_ctx *sc, int flags)
client_ptrwarp(newcc);
}
+void
+client_cycle_leave(struct screen_ctx *sc, struct client_ctx *cc)
+{
+ sc->cycling = 0;
+
+ client_mtf(NULL);
+ if (cc) {
+ group_sticky_toggle_exit(cc);
+ XUngrabKeyboard(X_Dpy, CurrentTime);
+ }
+}
+
static struct client_ctx *
client_mrunext(struct client_ctx *cc)
{