Hello,
 
I'm using wt 3.3.1 and I'll show and hide a widget with animation.
So I used the following code for show:
this->_infoBox->setHidden(false, WAnimation(WAnimation::Fade, WAnimation::Ease, 1000));

 
It works as expected.
 
For hiding I used this line:
 
this->_infoBox->setHidden(true, WAnimation(WAnimation::Fade, WAnimation::Ease, 500));
 
But after it, the widget isn't hidden. So I tested other lines. First:
 
this->_infoBox->setHidden(true);
 
It works! But the following don't work:
 
this->_infoBox->setHidden(true, WAnimation(WAnimation::Fade));
 
Is there anything I hadn't read or is it a bug?
 
Greetings
Torsten
------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
witty-interest mailing list
witty-interest@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to