diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d4362f2..075ae248 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## ?? - v0.3.2 - Beta +## 11/05/2020 - v0.3.2 - Beta * (Add) Show layer differences where daker pixels were also present on previous layer and the white pixels the difference between previous and current layer. * (Add) Layer preview process time in milliseconds diff --git a/PrusaSL1Reader/FileFormat.cs b/PrusaSL1Reader/FileFormat.cs index 2f3ce37d..eaf71ca7 100644 --- a/PrusaSL1Reader/FileFormat.cs +++ b/PrusaSL1Reader/FileFormat.cs @@ -6,6 +6,7 @@ * of this license document, but changing it is not allowed. */ using System; +using System.Diagnostics; using System.Drawing; using System.IO; using System.IO.Compression; @@ -475,7 +476,11 @@ public virtual void Extract(string path, bool genericConfigExtract = true, bool } }*/ - if(!Directory.Exists(path)) Directory.CreateDirectory(path); + //if (!Directory.Exists(path)) + //{ + Directory.CreateDirectory(path); + //} + if (FileType == FileFormatType.Archive) { diff --git a/PrusaSL1Viewer/FrmLoading.Designer.cs b/PrusaSL1Viewer/FrmLoading.Designer.cs index b187f264..7c8f5302 100644 --- a/PrusaSL1Viewer/FrmLoading.Designer.cs +++ b/PrusaSL1Viewer/FrmLoading.Designer.cs @@ -53,9 +53,9 @@ private void InitializeComponent() this.lbDescription.AutoSize = true; this.lbDescription.Location = new System.Drawing.Point(3, 12); this.lbDescription.Name = "lbDescription"; - this.lbDescription.Size = new System.Drawing.Size(35, 13); + this.lbDescription.Size = new System.Drawing.Size(60, 13); this.lbDescription.TabIndex = 1; - this.lbDescription.Text = "label1"; + this.lbDescription.Text = "Description"; // // timer //