fix insignificant display hickup

This commit is contained in:
pointfeev 2022-03-06 20:13:25 -05:00
parent 7f3a6a6aa0
commit 4e950bcdec
2 changed files with 3 additions and 4 deletions

View file

@ -5,7 +5,7 @@
<UseWindowsForms>True</UseWindowsForms>
<ApplicationIcon>Resources\ini.ico</ApplicationIcon>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<Version>3.2.0.0</Version>
<Version>3.2.0.1</Version>
<PackageIcon>Resources\ini.ico</PackageIcon>
<PackageIconUrl />
<Description />

View file

@ -185,9 +185,8 @@ internal partial class SelectForm : CustomForm
}
}
if (Program.Canceled) return;
if (string.IsNullOrWhiteSpace(dlcName))
return; //dlcName = "Unknown DLC";
dlc[dlcAppId] = (DlcType.Default, dlcName, dlcIcon);
if (!string.IsNullOrWhiteSpace(dlcName))
dlc[dlcAppId] = (DlcType.Default, dlcName, dlcIcon);
RemoveFromRemainingDLCs(dlcAppId);
});
dlcTasks.Add(task);