Displaying 1 result from an estimated 1 matches for "959b72f".
Did you mean:
929372f
2007 May 03
2
Bug in otherScreenGrabExist?
...I noticed that the function was always returning true if only
one grab is checked for (maybe other cases too)
If nobody shouts I shall commit it because the behaviour in
my plugin is now as expected.
-------------- next part --------------
diff --git a/src/screen.c b/src/screen.c
index 7dcc452..959b72f 100644
--- a/src/screen.c
+++ b/src/screen.c
@@ -2427,7 +2427,7 @@ otherScreenGrabExist (CompScreen *s, ...)
va_end (ap);
- if (!name)
+ if (name)
return TRUE;
}
}