Combobox list hiding
Combobox list hiding
Any one knows why or how to fix the combobox list hiding behind other gui elements?
Re: Combobox list hiding
Do you have quick code example to show the problem? Otherwise I have to code that first.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Re: Combobox list hiding
Well the case seem a little more complicated I originally though it was a bug with the combobox but it seem it's a bug with CGuiPanel.
What is used to determine the draw order in the gui elements?
right now it seem the panel is not properly ordering it's children for draw.
What is used to determine the draw order in the gui elements?
right now it seem the panel is not properly ordering it's children for draw.
Re: Combobox list hiding
The order in which they are added. Children in front of parents. Children added later in front of children added earlier. You can change order with IGUIElement::bringToFront() and IGUIElement::sendToBack().
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm