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
Copy file name to clipboardExpand all lines: core/src/processing/core/PApplet.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2055,7 +2055,7 @@ public void handleDraw() {
2055
2055
setup();
2056
2056
2057
2057
if(pixelDensityWarning){
2058
-
System.err.println("Warning: pixelDensity() now defaults to 2x to align with your display's pixel density. To avoid this warning, please explicitly set pixelDensity() in settings().");
2058
+
System.err.println("Warning: Processing now sets pixelDensity(2) by default on high-density screens. This may change how your sketch looks. To revert to the old behavior, set pixelDensity(1) in setup().");
2059
2059
}
2060
2060
2061
2061
} else { // frameCount > 0, meaning an actual draw()
0 commit comments