So I’m fooling around in lwjgl, and making this little multi-purpose game engine as a side-project. I wanted to make it so that I could have my own “popup” dialogue boxes using JFrames. They work perfectly fine, when the window is not in fullscreen. However, when the window IS in fullscreen, the JFrame is created behind the lwjgl Display, and not ontop of it.
to get into fullscreen I use:
Display.setFullscreen(bool);
I also made sure that “always stay ontop” was enabled on the JFrame.
Any ideas?