Hi all,
I want to make an extension to my Raspberry Pi app that allows my program to run on different screen sizes.
I could make a table containing some information for every widget on the screen in terms of position and size, in order
to control the position and size of the controls.
I have seen, though, that if I make a SIZEABLE TGUI screen, TGUI somehow stretches/shrinks my controls according to the
main window size. This is something I do not want, since I want to be in the driver's seat myself.
Q: Is there a way to disable this option?
I tried to test for the sf::Event::EventType::Resized in the message loop, and do not call gui.handleEvent for than event.
But that didn't seem to have ant effect.
Ingar