cvsimport

This commit is contained in:
okan
2014-01-21 15:42:44 +00:00
10 changed files with 190 additions and 228 deletions

View File

@@ -235,11 +235,11 @@ xev_handle_buttonpress(XEvent *ee)
if (mb == NULL)
return;
if (mb->flags == MOUSEBIND_CTX_WIN) {
if (mb->flags & CWM_WIN) {
if (((cc = client_find(e->window)) == NULL) &&
(cc = client_current()) == NULL)
return;
} else { /* (mb->flags == MOUSEBIND_CTX_ROOT) */
} else {
if (e->window != e->root)
return;
cc = &fakecc;
@@ -287,7 +287,7 @@ xev_handle_keypress(XEvent *ee)
if (kb == NULL)
return;
if (kb->flags & KBFLAG_NEEDCLIENT) {
if (kb->flags & CWM_WIN) {
if (((cc = client_find(e->window)) == NULL) &&
(cc = client_current()) == NULL)
return;