summaryrefslogtreecommitdiff
path: root/community/metacity/fix_shadows.patch
diff options
context:
space:
mode:
Diffstat (limited to 'community/metacity/fix_shadows.patch')
-rw-r--r--community/metacity/fix_shadows.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/community/metacity/fix_shadows.patch b/community/metacity/fix_shadows.patch
deleted file mode 100644
index 8d4bf9939..000000000
--- a/community/metacity/fix_shadows.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff -Naur metacity-2.34.13.orig/src/compositor/compositor-xrender.c metacity-2.34.13/src/compositor/compositor-xrender.c
---- metacity-2.34.13.orig/src/compositor/compositor-xrender.c 2011-11-10 15:14:34.000000000 +0100
-+++ metacity-2.34.13/src/compositor/compositor-xrender.c 2012-11-09 13:51:42.492411570 +0100
-@@ -905,35 +905,6 @@
- }
- }
-
-- /* Never put a shadow around shaped windows */
-- if (cw->shaped) {
-- meta_verbose ("Window has no shadow as it is shaped\n");
-- return FALSE;
-- }
--
-- /* Don't put shadow around DND icon windows */
-- if (cw->type == META_COMP_WINDOW_DND ||
-- cw->type == META_COMP_WINDOW_DESKTOP) {
-- meta_verbose ("Window has no shadow as it is DND or Desktop\n");
-- return FALSE;
-- }
--
-- if (cw->mode != WINDOW_ARGB) {
-- meta_verbose ("Window has shadow as it is not ARGB\n");
-- return TRUE;
-- }
--
-- if (cw->type == META_COMP_WINDOW_MENU ||
-- cw->type == META_COMP_WINDOW_DROP_DOWN_MENU) {
-- meta_verbose ("Window has shadow as it is a menu\n");
-- return TRUE;
-- }
--
-- if (cw->type == META_COMP_WINDOW_TOOLTIP) {
-- meta_verbose ("Window has shadow as it is a tooltip\n");
-- return TRUE;
-- }
--
- meta_verbose ("Window has no shadow as it fell through\n");
- return FALSE;
- }