Shortcut description and Sum overflow

This commit is contained in:
2022-10-25 17:57:55 -07:00
parent b567a7f854
commit 569ee26c55
3 changed files with 28 additions and 5 deletions

View File

@ -234,7 +234,8 @@ public class MapLogic
continue;
try
{
windowsShortcut = new() { Path = saveContainer.ResizedFileHolder.FullName };
string description = saveContainer.FaceFileHolder is not null ? saveContainer.FaceFileHolder.Name : string.Empty;
windowsShortcut = new() { Path = saveContainer.ResizedFileHolder.FullName, Description = description };
windowsShortcut.Save(saveContainer.ShortcutFile);
windowsShortcut.Dispose();
if (saveContainer.MakeAllHidden)