We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The PdePreprocessor in the Java mode is not parsing the renderer when the sketch is in fullscreen mode:
https://github.com/processing/processing4/blob/master/java/src/processing/mode/java/preproc/PdeParseTreeListener.java#L718
Current workaround is to use size(displayWidth, displayHeight, RENDERER) instead of fullScreen(RENDERER)
size(displayWidth, displayHeight, RENDERER)
fullScreen(RENDERER)
The text was updated successfully, but these errors were encountered:
Fixed with Processing 4.0b8 and this commit 0c52678
Sorry, something went wrong.
No branches or pull requests
The PdePreprocessor in the Java mode is not parsing the renderer when the sketch is in fullscreen mode:
https://github.com/processing/processing4/blob/master/java/src/processing/mode/java/preproc/PdeParseTreeListener.java#L718
Current workaround is to use
size(displayWidth, displayHeight, RENDERER)
instead offullScreen(RENDERER)
The text was updated successfully, but these errors were encountered: