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, rolloverResetLoop: true,
}, },
record: { record: {
active: false,
ignoreProps: { ignoreProps: {
artboard: ['x', 'y', 'zoom', 'pixelDensity', 'width', 'height'], artboard: ['x', 'y', 'zoom', 'pixelDensity', 'width', 'height'],
layer: ['transformOrigin', 'fontFamily', 'text', 'mirror_x', 'mirror_y', 'mirror_xy'], 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.`); 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 // should we have a record object, let's inject the buttons, etc
if (typeof record === 'object' && record.hasOwnProperty('injectPanel')) { if (config.record.active) {
record.injectPanel(this); if (typeof record === 'object' && record.hasOwnProperty('injectPanel')) {
} else { record.injectPanel(this);
console.log('Layer::findInjectPanel', `cannot inject record panel for ${this.id()} for some reason.`); } else {
console.log('Layer::findInjectPanel', `cannot inject record panel for ${this.id()} for some reason.`);
}
} }
injectedPanel = true; injectedPanel = true;