diff --git a/src/extensions/scratch3_pen/index.js b/src/extensions/scratch3_pen/index.js index d9e736063..e4211b328 100644 --- a/src/extensions/scratch3_pen/index.js +++ b/src/extensions/scratch3_pen/index.js @@ -91,10 +91,12 @@ class Scratch3PenBlocks { /** * The minimum and maximum allowed pen size. + * The maximum is twice the diagonal of the stage, so that even an + * off-stage sprite can fill it. * @type {{min: number, max: number}} */ static get PEN_SIZE_RANGE () { - return {min: 1, max: 255}; + return {min: 1, max: 1200}; } /**