recordbutton can be disabled

This commit is contained in:
jrkb 2023-10-24 07:41:44 +02:00
parent f19843bd46
commit ab3786ef23
2 changed files with 7 additions and 4 deletions

View file

@ -115,6 +115,7 @@ const config = {
rolloverResetLoop: true,
},
record: {
active: false,
ignoreProps: {
artboard: ['x', 'y', 'zoom', 'pixelDensity', 'width', 'height'],
layer: ['transformOrigin', 'fontFamily', 'text', 'mirror_x', 'mirror_y', 'mirror_xy'],

View file

@ -806,10 +806,12 @@ const Layer = function(tp, layerID, fontsAndAxes, autoInit = true) {
console.log('Layer::findInjectPanel', `cannot inject audio panel for ${this.id()} for some reason.`);
}
// should we have a record object, let's inject the buttons, etc
if (typeof record === 'object' && record.hasOwnProperty('injectPanel')) {
record.injectPanel(this);
} else {
console.log('Layer::findInjectPanel', `cannot inject record panel for ${this.id()} for some reason.`);
if (config.record.active) {
if (typeof record === 'object' && record.hasOwnProperty('injectPanel')) {
record.injectPanel(this);
} else {
console.log('Layer::findInjectPanel', `cannot inject record panel for ${this.id()} for some reason.`);
}
}
injectedPanel = true;