If support for animated gif and mng is disabled, anyone has suggestions? I have a bunch of animated gifs to display, is there a way to convert them into a different and supported format?
In NetFront, I can see animated gif and mng files very well. I wonder if the problem would not come from my code. What I do is :
CODE
QLabel label = new QLabel( this );
label->setMovie( QMovie( "/home/zaurus/img.gif" ) );
label->setMovie( QMovie( "/home/zaurus/img.gif" ) );
According to documentation, the animation should start right away. Right?
Edit: Forget it. It works fine.