Use auto name for export all

This commit is contained in:
Jaex 2017-12-23 17:50:31 +03:00
parent 3328d1b005
commit 6c26e42a19
2 changed files with 2 additions and 2 deletions

View file

@ -1629,7 +1629,7 @@ private void CustomUploaderExportAll()
foreach (CustomUploaderItem uploader in Config.CustomUploadersList) foreach (CustomUploaderItem uploader in Config.CustomUploadersList)
{ {
string json = eiCustomUploaders.Serialize(uploader); string json = eiCustomUploaders.Serialize(uploader);
string filepath = Path.Combine(fsd.FileName, uploader.Name + ".sxcu"); string filepath = Path.Combine(fsd.FileName, uploader.ToString() + ".sxcu");
File.WriteAllText(filepath, json, Encoding.UTF8); File.WriteAllText(filepath, json, Encoding.UTF8);
} }
} }

View file

@ -161,7 +161,7 @@ private void InitializeComponent()
// //
resources.ApplyResources(this.ucBeforeUpload, "ucBeforeUpload"); resources.ApplyResources(this.ucBeforeUpload, "ucBeforeUpload");
this.ucBeforeUpload.Name = "ucBeforeUpload"; this.ucBeforeUpload.Name = "ucBeforeUpload";
// //
// AfterCaptureForm // AfterCaptureForm
// //
this.AcceptButton = this.btnContinue; this.AcceptButton = this.btnContinue;