Operating system Windows Xp
Compiler Visual Studio 2005
Bug description:
If you add an effect in-out effect, ie. addInOutFader () after create a listbox the list box scroll bar doesnt works. You can add items using addItem () though.
If you add the effect BEFORE the listbox declaration, it works pecfectly.
How to reproduce the error?
Use the UserInterfase example. Look for the declaration of the list box.
Code: Select all
IGUIListBox * listbox = env->addListBox(rect<s32>(50, 140, 250, 210));
Code: Select all
IGUIInOutFader* fader;
fader = device->getGUIEnvironment()->addInOutFader();
fader->setColor(video::SColor(0,255,255,255));
fader->fadeIn(900);