|
@@ -78,11 +78,13 @@ internal class ExportFileDialog : CustomDialog
|
|
|
{
|
|
|
ExportFilePopup popup = new ExportFilePopup(FileWidth, FileHeight);
|
|
|
popup.ShowDialog();
|
|
|
+
|
|
|
if (popup.DialogResult == true)
|
|
|
{
|
|
|
FileWidth = popup.SaveWidth;
|
|
|
FileHeight = popup.SaveHeight;
|
|
|
FilePath = popup.SavePath;
|
|
|
+
|
|
|
ChosenFormat = popup.SaveFormat;
|
|
|
}
|
|
|
|