Displaying 2 results from an estimated 2 matches for "moveinputfocustootherwindow".
2007 Apr 19
0
[PATCH] Make focusDefaultWindow () take a CompScreen as argument
...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)
moveInputFocusToWindow (ancestor);
}
else
- focusDefaultWindow (display);
+ focusDefaultWindow (w->screen);
}
else if (w->type & (CompWindowTypeDialogMask |
CompWindowTypeModalDialogMask))
@@ -177,10 +177,10 @@ moveInputFocusToOtherWindow (Comp...
2006 Dec 28
2
updating the AUTHORS file
...NG_DESKTOP request with no window set, set
the flag on all screens. (Fixes the KDE "show desktop" applet.) Also,
don't allow a client to change its _NET_WM_DESKTOP.
Set _NET_WM_DESKTOP on all windows to 0; KDE's pager and tasklist
require this to be set. (bnc 178320)
call moveInputFocusToOtherWindow() before destroyWindow() when
processing a DestroyNotify, or else the input focus can get stranded.
Check libwnck for wnck_window_has_name (new in HEAD).
#if HAVE_WNCK_WINDOW_HAS_NAME, redefine wnck_window_get_name to
return NULL if the window only has a fallback name. bnc 173059.
use...