mirror of
https://github.com/processing/processing4.git
synced 2026-06-16 04:26:26 +02:00
more work on resolutions and full screen
This commit is contained in:
@@ -808,10 +808,11 @@ public class PSurfaceJOGL implements PSurface {
|
||||
if (sketchWidth != sketchWidthRequested || sketchHeight != sketchHeightRequested) {
|
||||
if (!sketch.sketchFullScreen()) {
|
||||
// don't show the message when using fullScreen()
|
||||
PGraphics.showWarning("The sketch has been resized from " +
|
||||
PGraphics.showWarning(
|
||||
"The sketch has been resized from " +
|
||||
"%dx%d to %dx%d by the operating system.%n" +
|
||||
"This is happening outside Processing, " +
|
||||
"and is probably a limitation of the OS or window manager.",
|
||||
"This happened outside Processing, " +
|
||||
"and may be a limitation of the OS or window manager.",
|
||||
sketchWidthRequested, sketchHeightRequested, sketchWidth, sketchHeight);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,6 +5,11 @@ X Support chained decimals during SVG Parsing
|
||||
X https://github.com/processing/processing4/pull/659
|
||||
X https://github.com/processing/processing4/issues/515
|
||||
|
||||
_ has been resized from 100?100 to 116?100 by the window manager
|
||||
|
||||
_ fullScreen(P2D) from an executable does not work properly
|
||||
_ partially fixed, but now need to sort out hidpi issues
|
||||
_ https://github.com/processing/processing4/issues/514
|
||||
|
||||
_ args passed to main() aren't working
|
||||
_ (there was a bug report for this already?)
|
||||
|
||||
Reference in New Issue
Block a user