aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
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)
{