aboutsummaryrefslogtreecommitdiffstats
path: root/client.c
diff options
context:
space:
mode:
authorokan2015-08-27 18:40:09 +0000
committerokan2015-08-27 18:40:09 +0000
commit0a6b4395b1446658387e705bb2409d657dd039d6 (patch)
tree7ddc43952b471b18fdb1e9b1a33a95362252fa60 /client.c
parent46cb79168f52da7f4e3aa7c2c1758d4383cc866b (diff)
downloadcwm-0a6b4395b1446658387e705bb2409d657dd039d6.tar.gz
Move client cycle grab/ungrab into a more relevant place; while here,
update comments about why we need to grab/ungrab the keyboard.
Diffstat (limited to 'client.c')
-rw-r--r--client.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/client.c b/client.c
index b057e7e..cbfc407 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.206 2015/08/25 18:29:10 okan Exp $
+ * $OpenBSD: client.c,v 1.207 2015/08/27 18:40:09 okan Exp $
*/
#include <sys/types.h>
@@ -659,6 +659,10 @@ client_cycle(struct screen_ctx *sc, int flags)
struct client_ctx *newcc, *oldcc;
int again = 1;
+ /* For X apps that ignore events. */
+ XGrabKeyboard(X_Dpy, sc->rootwin, True,
+ GrabModeAsync, GrabModeAsync, CurrentTime);
+
if (TAILQ_EMPTY(&sc->clientq))
return;