typo
This commit is contained in:
parent
494f562b3b
commit
922834161f
1 changed files with 4 additions and 4 deletions
|
@ -116,8 +116,8 @@ const Audio = function(tp, record) {
|
|||
];
|
||||
} else if (propTitle.indexOf('letterDelay') === 0) {
|
||||
return [
|
||||
config.audio.defaultRange.letterDelay[0],
|
||||
config.audio.defaultRange.letterDelay[1]
|
||||
config.audio.defaultRange.letterDelays[0],
|
||||
config.audio.defaultRange.letterDelays[1]
|
||||
];
|
||||
} else if (propTitle.split('.')[0] === 'fontVariationAxes') {
|
||||
return layer.props.fontVariationAxes
|
||||
|
@ -222,8 +222,8 @@ const Audio = function(tp, record) {
|
|||
let hasLetterDelay = //false;
|
||||
config
|
||||
.layer.letterDelayProps
|
||||
.indexOf(propTitle.split('.')[0]) >= 0 && propTitle.indexOf('color') < 0;
|
||||
//&& tp.isSequenced([...[layer.id()], ...propTitle.split('.')]);
|
||||
.indexOf(propTitle.split('.')[0]) >= 0 && propTitle.indexOf('color') < 0
|
||||
&& !tp.isSequenced(propTitle);
|
||||
const panel = tp.getPanel();
|
||||
if (!areMutationsObserved) {
|
||||
mutationObserver.observe(panel, { childList: true, subtree: true });
|
||||
|
|
Loading…
Reference in a new issue