소스 검색

prevent exporting empty canvas

dwelle 5 년 전
부모
커밋
4eda1cfb5d
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      src/index.js

+ 2 - 0
src/index.js

@@ -34,6 +34,8 @@ function exportAsPNG({
   exportVisibleOnly,
   exportPadding = 10
 }) {
+  if ( !elements.length ) return window.alert("Cannot export empty canvas.");
+
   // deselect & rerender
 
   clearSelection();