Revert "fix: audio regions editable state"

This reverts commit 50386c53b1.
feat/type-attributes
Tomáš Mládek 2023-03-05 20:27:51 +01:00
parent c9e4a2b927
commit 2e62854fda
1 changed files with 3 additions and 5 deletions

View File

@ -62,8 +62,6 @@
color: annotation.get("COLOR") || DEFAULT_ANNOTATION_COLOR,
attributes: { "upend-id": annotation.address },
data: (annotation.attr["LBL"] || [])[0]?.value,
drag: editable,
resize: editable,
...fragment,
} as RegionParams);
}
@ -107,9 +105,9 @@
} else {
wavesurfer.disableDragSelection();
}
regions.forEach((region) => {
region.update({ drag: editable, resize: editable });
});
regions.forEach((region) =>
region.update({ drag: detail, resize: detail })
);
}
async function updateAnnotation(region: Region) {