We've modified code to set the E_Pixmap's parent window only.
If we need to set unusable and clear the pixmap, then we have to call these
functions explicitly.
Change-Id: I190b79c73f1c76eb830c853f7c23138f1c4b5050
if (cp->parent == win) return;
- e_pixmap_usable_set(cp, 0);
- e_pixmap_clear(cp);
+ // if you need to unset and clear a pixmap, then call below funcsionts explicitly
+ //e_pixmap_usable_set(cp, 0);
+ //e_pixmap_clear(cp);
cp->parent = win;
}