-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
showConsoleWindow=false causes JavaFx window to start minimized #64
Comments
Btw the |
The problematic line seems to be Line 207 in e098be8
But from the surrounding context it looks like the intent was to run the process in the background. Not sure how to proceed on this one. |
It was set to run in background since swing application blocks the shell. Maybe this behavior is no longer with java8? |
Ya it must have changed. I tried the same workaround (removing |
…tart minimized
A side effect of using the
showConsoleWindow
option set tofalse
is that it causes JavaFx application windows to start minimized. To me this is unexpected.The problem seems to be the
/min
part of the lineJAVACMD=start /min javaw
. When/min
is removed it behaves as expected for both JavaFx and Swing (tested in Java 8u161).Workaround
In my
environmentSetupFileName
script, I putset JAVACMD=start javaw
.The text was updated successfully, but these errors were encountered: