Hello.
I found IGUIComboBox's wrong working.
At first, I clicked IGUIComboBox's small button, and IGUIComboBox droped down rectangle showing items.
If clicked other place, the rectangle disappear.
But, if clicked other place after scroll bar moving, All working was stopped.
Just Windows cancel button is alive.
Is it BUG?
For reference drop down menu is overlaping another GUIButton.
Please give me a wisdom.
Is it IGUIComboBox's bug?
This is a bug in Irrlicht 1.3. It is fixed in SVN.
In CGUIEnvironment.cpp, in CGUIEnvironment::setFocus(), add the following code after line 170:
and recompile Irrlicht
In CGUIEnvironment.cpp, in CGUIEnvironment::setFocus(), add the following code after line 170:
Code: Select all
// GUI Environment should not get the focus
if (element == this)
element = 0;
t_t
no....-_-;;; it is not solved.
one time moving ComboBox's scroll, All GUI can't receive message.
Stop all GUI operation.
one time moving ComboBox's scroll, All GUI can't receive message.
Stop all GUI operation.
I'm pretty sure that you are running into the exact problem that bitplane is talking about.
You would need to make the above change, rebuild the Irrlicht.dll and then make sure that the new dll was found when you ran your program. If you don't do all of these things, then there is no chance that it will start working.
Travis
You would need to make the above change, rebuild the Irrlicht.dll and then make sure that the new dll was found when you ran your program. If you don't do all of these things, then there is no chance that it will start working.
Travis