summaryrefslogtreecommitdiff
path: root/src/bin/e_popup.c
diff options
context:
space:
mode:
authorChristopher Michael <cpmichael1@comcast.net>2007-12-29 23:00:52 +0000
committerChristopher Michael <cpmichael1@comcast.net>2007-12-29 23:00:52 +0000
commit882c77967481793bb6d2f19eb872917b66a33873 (patch)
tree08e203066f0443b27d031b5df72fd26a3c54a551 /src/bin/e_popup.c
parent2c1e7a85b410d48200b07f5d8e0bd952f19c5a9f (diff)
downloadenlightenment-882c77967481793bb6d2f19eb872917b66a33873.tar.gz
Remove check for compositing available and just use whatever the user
selected. Not entirely safe nor correct tho. SVN revision: 33292
Diffstat (limited to 'src/bin/e_popup.c')
-rw-r--r--src/bin/e_popup.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/e_popup.c b/src/bin/e_popup.c
index 34752f4c93..26c9556304 100644
--- a/src/bin/e_popup.c
+++ b/src/bin/e_popup.c
@@ -169,8 +169,7 @@ e_popup_edje_bg_object_set(E_Popup *pop, Evas_Object *o)
pop->shaped = 1;
else
pop->shaped = 0;
- /* check if user wanted composite AND that X can do it */
- if ((e_config->use_composite) && (ecore_x_screen_is_composited(0)))
+ if (e_config->use_composite)
{
ecore_evas_alpha_set(pop->ecore_evas, pop->shaped);
pop->evas_win = ecore_evas_software_x11_window_get(pop->ecore_evas);