Fix recording and playback issues

- Fix download filename handling in converter and export functions
- Make updateRecordCanvas return Promise to handle async loadFromJSON correctly
- Add setCoords() call in setObjectValue to fix object selection after updates
- Update recorder initialization and animation frame handling

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-08-11 16:20:25 +02:00
co-authored by Claude Haiku 4.5
parent 794995fbb5
commit f8f863e7e2
4 changed files with 68 additions and 41 deletions
+1 -1
View File
@@ -94,7 +94,7 @@ function PostBlob(blob) {
const a = document.createElement('a');
a.style.display = 'none';
a.href = url;
a.download = name;
a.download = blob.name || 'video';
document.body.appendChild(a);
a.click();
recording = false;