Displaying 1 result from an estimated 1 matches for "blurpreparepaintscreen".
2007 Jan 11
1
Menu fix for firefox and blur
...:43:23 +0000
Subject: [PATCH] Menu hack for firefox/thunderbird/OO.o menus
---
plugins/blur.c | 7 ++++++-
1 files changed, 6 insertions(+), 1 deletions(-)
diff --git a/plugins/blur.c b/plugins/blur.c
index cde18fb..0be98e9 100644
--- a/plugins/blur.c
+++ b/plugins/blur.c
@@ -226,7 +226,12 @@ blurPreparePaintScreen (CompScreen *s,
for (w = s->windows; w; w = w->next)
{
- if (bs->wMask & w->type)
+ int type = w->type;
+
+ if (w->type == CompWindowTypeNormalMask && w->attrib.override_redirect)
+ type = CompWindowTypeUnknownMask; // menu fix hack
+
+ if (...