We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71b1ae7 commit 78fb6eeCopy full SHA for 78fb6ee
src/containers/costume-tab.jsx
@@ -145,7 +145,7 @@ class CostumeTab extends React.Component {
145
handleExportCostume(costumeIndex) {
146
const item = this.props.vm.editingTarget.sprite.costumes[costumeIndex];
147
const blob = new Blob([
148
- this.props.vm.getExportedCostume(item)
+ this.props.vm.getExportedCostume(item, true)
149
], { type: item.asset.assetType.contentType });
150
downloadBlob(`${item.name}.${item.asset.dataFormat}`, blob);
151
}
0 commit comments