Remove check for compositing available and just use whatever the user

selected. Not entirely safe nor correct tho.


SVN revision: 33292
This commit is contained in:
Christopher Michael 2007-12-29 23:00:52 +00:00
parent 2c1e7a85b4
commit 882c779674
1 changed files with 1 additions and 2 deletions

View File

@ -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);