search for: reverttopointerroot

Displaying 1 result from an estimated 1 matches for "reverttopointerroot".

2007 Apr 19
0
[PATCH] Make focusDefaultWindow () take a CompScreen as argument
...focus = w; } + else + focus = w; } } if (focus) { - if (focus->id != d->activeWindow) + if (focus->id != s->display->activeWindow) moveInputFocusToWindow (focus); } else { - XSetInputFocus (d->display, d->screens->root, RevertToPointerRoot, + XSetInputFocus (s->display->display, s->display->screens->root, RevertToPointerRoot, CurrentTime); } } diff --git a/src/event.c b/src/event.c index 8c91cb6..127c222 100644 --- a/src/event.c +++ b/src/event.c @@ -142,7 +142,7 @@ moveInputFocusToOtherWindow (CompWindow *w)...