blob: 8d4bf9939be2d8eb9c4b7253b95e4d6c7726eaf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
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;
}
|