Skip to content

Commit 78fb6ee

Browse files
authored
Update costume-tab.jsx
1 parent 71b1ae7 commit 78fb6ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/containers/costume-tab.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class CostumeTab extends React.Component {
145145
handleExportCostume(costumeIndex) {
146146
const item = this.props.vm.editingTarget.sprite.costumes[costumeIndex];
147147
const blob = new Blob([
148-
this.props.vm.getExportedCostume(item)
148+
this.props.vm.getExportedCostume(item, true)
149149
], { type: item.asset.assetType.contentType });
150150
downloadBlob(`${item.name}.${item.asset.dataFormat}`, blob);
151151
}

0 commit comments

Comments
 (0)