From 882c77967481793bb6d2f19eb872917b66a33873 Mon Sep 17 00:00:00 2001 From: Christopher Michael Date: Sat, 29 Dec 2007 23:00:52 +0000 Subject: [PATCH] Remove check for compositing available and just use whatever the user selected. Not entirely safe nor correct tho. SVN revision: 33292 --- src/bin/e_popup.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/bin/e_popup.c b/src/bin/e_popup.c index 34752f4c9..26c955630 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);