fix comp mirrors for argb xim non-native wins

This commit is contained in:
discomfitor 2013-05-18 12:19:16 +01:00
parent 48c0777dd1
commit 2f6bbfd908
1 changed files with 3 additions and 2 deletions

View File

@ -1989,10 +1989,11 @@ _e_comp_win_mirror_add(E_Comp_Win *cw)
pix = evas_object_image_data_get(cw->obj, EINA_FALSE);
}
}
if (pix && (!argb))
if (pix)
{
evas_object_image_data_set(o, pix);
evas_object_image_data_set(cw->obj, pix);
if (!argb)
evas_object_image_data_set(cw->obj, pix);
}
evas_object_image_size_set(o, w, h);
}