We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9688687 + 4b146e4 commit 35f2312Copy full SHA for 35f2312
src/core/main.js
@@ -166,12 +166,6 @@ class p5 {
166
// PRIVATE p5 PROPERTIES AND METHODS
167
//////////////////////////////////////////////
168
169
- this._accessibleOutputs = {
170
- text: false,
171
- grid: false,
172
- textLabel: false,
173
- gridLabel: false
174
- };
175
this._setupDone = false;
176
// for handling hidpi
177
this._pixelDensity = Math.ceil(window.devicePixelRatio) || 1;
@@ -583,6 +577,13 @@ class p5 {
583
577
}
584
578
585
579
_initializeInstanceVariables() {
580
+ this._accessibleOutputs = {
581
+ text: false,
582
+ grid: false,
+ textLabel: false,
+ gridLabel: false
+ };
586
+
587
this._styles = [];
588
589
this._bezierDetail = 20;
0 commit comments