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> <UseWindowsForms>True</UseWindowsForms>
<ApplicationIcon>Resources\ini.ico</ApplicationIcon> <ApplicationIcon>Resources\ini.ico</ApplicationIcon>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract> <IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<Version>3.2.0.0</Version> <Version>3.2.0.1</Version>
<PackageIcon>Resources\ini.ico</PackageIcon> <PackageIcon>Resources\ini.ico</PackageIcon>
<PackageIconUrl /> <PackageIconUrl />
<Description /> <Description />

View file

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