fix insignificant display hickup
This commit is contained in:
parent
7f3a6a6aa0
commit
4e950bcdec
2 changed files with 3 additions and 4 deletions
|
@ -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 />
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue