Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions src/core/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,6 @@ class p5 {
// PRIVATE p5 PROPERTIES AND METHODS
//////////////////////////////////////////////

this._accessibleOutputs = {
text: false,
grid: false,
textLabel: false,
gridLabel: false
};
this._setupDone = false;
// for handling hidpi
this._pixelDensity = Math.ceil(window.devicePixelRatio) || 1;
Expand Down Expand Up @@ -583,6 +577,13 @@ class p5 {
}

_initializeInstanceVariables() {
this._accessibleOutputs = {
text: false,
grid: false,
textLabel: false,
gridLabel: false
};

this._styles = [];

this._bezierDetail = 20;
Expand Down