I”ve noticed that during the transition from a home screen to the app drawer the system wallpaper bleeds through a…
I”ve noticed that during the transition from a home screen to the app drawer the system wallpaper bleeds through a little? Anyway to mitigate this?
]]>
< ![CDATA[
This is due to the theme transition, it depends on devices and I am aware of this, but I am afraid that I have no fix for this issue yet 🙁
]]>
< ![CDATA[
Workaround:
In AppDrawers pause event set this script:
LL.getContext().overridePendingTransition(0,0);
In every shortcut to the app drawer set in tap event:
LL.getEvent().getItem().launch();
LL.getContext().overridePendingTransition(0,0);
This will remove transition animations, so you won’t see the wallpaper.
]]>