Displaying 1 result from an estimated 1 matches for "e804bbb".
Did you mean:
880bbb
2007 Apr 19
0
[PATCH] Make focusDefaultWindow () take a CompScreen as argument
...rePaintScreen (CompScreen *s,
/* only focus default window if switcher isn't active */
if (i == s->maxGrab)
- focusDefaultWindow (s->display);
+ focusDefaultWindow (s);
}
rs->moveWindow = 0;
diff --git a/src/display.c b/src/display.c
index 220b982..e804bbb 100644
--- a/src/display.c
+++ b/src/display.c
@@ -2527,7 +2527,7 @@ addDisplay (char *name)
if (focus == None || focus == PointerRoot)
{
- focusDefaultWindow (d);
+ focusDefaultWindow (d->screens);
}
else
{
@@ -2539,7 +2539,7 @@ addDisplay (char *name)
moveInput...