Browse Source

Fixed width and height export

flabbet 2 năm trước cách đây
mục cha
commit
ed1049603b
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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