浏览代码

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