search for: 7dcc452

Displaying 1 result from an estimated 1 matches for "7dcc452".

2007 May 03
2
Bug in otherScreenGrabExist?
...ck first 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; } }