Minor GUI bugs [fixed 2/3]

You discovered a bug in the engine, and you are sure that it is not a problem of your code? Just post it in here. Please read the bug posting guidelines first.
Post Reply
PI
Posts: 176
Joined: Tue Oct 09, 2007 7:15 pm
Location: Hungary

Minor GUI bugs [fixed 2/3]

Post by PI »

Hello!

There is no slider for scrolling the window in the GUIEditor, so not all the options can be set.

In the UserInterface and in the MeshViewer, if I set the GUI transparency to zero, there are still visible parts. This glitch was present in the previous versions, too.

Tabs hangs out from the clip rectangle of the window a bit.

Just wanted to note.
Cheers,
PI
CuteAlien
Admin
Posts: 9682
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

Thanks for reporting. I'll just have to put the gui-bugs on my todo for now, but I'll try to reproduce them when I come to it.

I think the editor-problem has been reported in the past. Maybe that should better be a bug-tracker entry as it might not be so trivial to change. I also have the feeling that we might need a new maintainer for that tool... I don't think anyone touched that one for some time by now.
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
PI
Posts: 176
Joined: Tue Oct 09, 2007 7:15 pm
Location: Hungary

Post by PI »

I should say thank you for dealing with it! And also for making this great engine better and better! :)
CuteAlien
Admin
Posts: 9682
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

OK, I found a bunch of problems with transparency. I think most troublesome are icons. In other cases it's partly that colors get set only once and don't update.

- Scrollbars - the icons for the buttons stay black
- windows - titlebar-blue and icon in titlebar
- tabs - the text in the tabheader
- combobox - the text in the title and the icon
- checkbox icons
- table - text in elements

Definitely stuff that should be fixed.
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
PI
Posts: 176
Joined: Tue Oct 09, 2007 7:15 pm
Location: Hungary

Post by PI »

Yes, sorry, next time I've got issues I go into details! Thanks anyway! :)
CuteAlien
Admin
Posts: 9682
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

No problem, I would've checked all gui-elements anyway :-).
I just wrote it down here in case anyone knows further elements which I missed.
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
CuteAlien
Admin
Posts: 9682
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

OK, fixed the color stuff in the 1.7 svn branch. I even found a few more ;-)

Couldn't fix it for now for the SpinBox element. I would have needed to add a virtual function which would have changed the binary interface, so I think I'm not allowed to do that in a bugfix release. If that's a problem I allowed for now updating colors for that manually by doing for example element->setValue(element->getValue()). But when I don't forget it I will also do a real fix for that for 1.8.
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
PI
Posts: 176
Joined: Tue Oct 09, 2007 7:15 pm
Location: Hungary

Post by PI »

Oh, coolness! Thank you very much! :) I'm sure you won't forget it! (Why? Because of the previous sentence! :D)

Thanks,
PI
CuteAlien
Admin
Posts: 9682
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Post by CuteAlien »

I think I have fixed the problem with tabs hanging out of their clipping rect now (in svn release branch 1.7). So only one problem left :-)
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
Post Reply