1 parent 9df5bd7 commit 5fc9fdcCopy full SHA for 5fc9fdc
2 files changed
.changeset/auto-download.md
@@ -0,0 +1,5 @@
1
+---
2
+"holosticker": patch
3
4
+
5
+Animation exports auto-download again after encoding, with the in-dialog Save button as fallback
src/App.tsx
@@ -183,6 +183,12 @@ export default function App() {
183
if (prev) URL.revokeObjectURL(prev.url)
184
return result
185
})
186
+ // attempt the download; if the browser drops it because the
187
+ // click's activation expired, the Save button is right there
188
+ const a = document.createElement("a")
189
+ a.href = result.url
190
+ a.download = result.filename
191
+ a.click()
192
}
193
} finally {
194
setExporting(false)
0 commit comments