GUI bug

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
Guest

GUI bug

Post by Guest »

Let me apologize advace if this is already covered. I am also not savy enough to know how to fix this but here goes.

Compiler: DEV C++ 4.9.9.2
video mode: Opengl

on the User Interface tutorial, if you choose to run the tut in a higher resolution than 640X480 for example if you do

Code: Select all

device = createDevice(driverType, core::dimension2d<s32>(1024, 768));
when you try to select any gui element you have to click a good distance under where it appears on screen.

for example if you click the top half of the "New Window" button you will instead click the "Quit" button. It is most noticeable with listboxes where you often have to click the next item in the list to select the item you really wanted.

I hope I have described this well enough.
Ronin
Posts: 116
Joined: Wed Mar 03, 2004 6:23 pm
Location: Germany

Post by Ronin »

I guess you'll have to make your Window resizable, try calling device->setResizeAble(true)...

http://irrlicht.sourceforge.net/docu/cl ... e.html#a15
YASS - Yet Another Space Shooter - www.yass-engine.de
Guest

Post by Guest »

Ronin wrote:I guess you'll have to make your Window resizable, try calling device->setResizeAble(true)...

http://irrlicht.sourceforge.net/docu/cl ... e.html#a15
Thanks! I will use this work around for now. I very much appreciate it.

If I don't want a resizeable window then I'm kindof SOL :lol: it looks like.
MattyBoy
Posts: 19
Joined: Fri Oct 24, 2003 3:07 pm

GUI Bug

Post by MattyBoy »

I get this problem also. Has anyone had this same issue and fixed it? My window needs to be NOT resizeable.
Post Reply