From 9f07d5f8972cfeb2c7400da91e6ebe48f0200150 Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Tue, 15 Sep 2020 17:30:22 -0400 Subject: [PATCH] add clarification for bg color issue --- core/src/processing/core/PApplet.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/processing/core/PApplet.java b/core/src/processing/core/PApplet.java index 8b5357548..4c442f136 100644 --- a/core/src/processing/core/PApplet.java +++ b/core/src/processing/core/PApplet.java @@ -814,7 +814,8 @@ public class PApplet implements PConstants { OutputStream outputStream; // Background default needs to be different from the default value in - // PGraphics.backgroundColor, otherwise size(100, 100) bg spills over. + // PGraphics.backgroundColor, otherwise sketches that have size(100, 100) + // appear to be larger than they are, because the bg color matches. // https://github.com/processing/processing/issues/2297 int windowColor = 0xffDDDDDD;