You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2018. It is now read-only.
Using Java 8u45, JME 3.0.10 and JME3-JFX 1.158.2015-05-08_141516-3ff16e5, in fullscreen mode on Windows 8.1, nets you a centered ComboBox, that you can open, but not interact with. In windowed mode, everything works perfectly.
After poking around with a debugger, the snappers are there, and active, but don't seem to be capturing input for the popup, you just click through it.
The text was updated successfully, but these errors were encountered:
Possibly related to this - popups opened in windowed mode (Windows 8.1) do not follow the window when moved.
Example: Add a menubutton to a windowed application, open the menu, then drag the window around. Ideally, these should follow the application window around, rather than remain floating on the desktop.
The root cause appears to be that they're being left as popups, rather than rendered within the JME window along with the rest of the UI (hence the issues with fullscreen above - the popup is actually generated as a seperate window and then input gets lost to the fullscreen app) - while this is the correct behavior for a standard JavaFX application, if used as a JME GUI I would expect popups to be rendered within the JME window itself. I'm unsure how difficult/impossible a task this will be to change, however.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Running this code:
Using Java 8u45, JME 3.0.10 and JME3-JFX 1.158.2015-05-08_141516-3ff16e5, in fullscreen mode on Windows 8.1, nets you a centered ComboBox, that you can open, but not interact with. In windowed mode, everything works perfectly.
After poking around with a debugger, the snappers are there, and active, but don't seem to be capturing input for the popup, you just click through it.
The text was updated successfully, but these errors were encountered: