소스 검색

Fixed width and height export

flabbet 2 년 전
부모
커밋
ed1049603b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/PixiEditor/Models/Dialogs/ExportFileDialog.cs

+ 2 - 2
src/PixiEditor/Models/Dialogs/ExportFileDialog.cs

@@ -18,8 +18,8 @@ internal class ExportFileDialog : CustomDialog
 
     public ExportFileDialog(VecI size)
     {
-        FileHeight = size.X;
-        FileWidth = size.Y;
+        FileWidth = size.X;
+        FileHeight = size.Y;
     }
 
     public int FileWidth