Skip to content

Commit

Permalink
into utf8 (#27938)
Browse files Browse the repository at this point in the history
  • Loading branch information
ycw committed Mar 19, 2024
1 parent a7712cc commit 47c9508
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/js/Sidebar.Geometry.js
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ function SidebarGeometry( editor ) {
const left = ( screen.width - 500 ) / 2;
const top = ( screen.height - 500 ) / 2;

const url = URL.createObjectURL( new Blob( [ output ], { type: 'text/plain' } ) );
const url = URL.createObjectURL( new Blob( [ output ], { type: 'text/plain;charset=utf-8' } ) );
window.open( url, '_blank', `location=no,left=${left},top=${top},width=500,height=500` );

} );
Expand Down

0 comments on commit 47c9508

Please sign in to comment.