Skip to content

Commit

Permalink
Dead code, garbage icon
Browse files Browse the repository at this point in the history
  • Loading branch information
zadjii-msft committed Jan 31, 2025
1 parent 544da7e commit 661577c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,6 @@ public override IListItem[] GetItems()
return allAppsSection;
}

// public ICommandItem? LookupApp(string displayName)
// {

// }
internal static List<AppItem> GetPrograms()
{
// NOTE TO SELF:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,12 @@ private async void UpdatedInstalledStatus()
this.Icon = InstallPackageCommand.CompletedIcon;
this.Command = new NoOpCommand();
List<IContextItem> contextMenu = [];
var uninstallContextItem = new CommandContextItem(installCommand) { IsCritical = true };
var uninstallContextItem = new CommandContextItem(installCommand)
{
IsCritical = true,
Icon = InstallPackageCommand.DeleteIcon,
};

if (WinGetStatics.AppSearchCallback != null)
{
var callback = WinGetStatics.AppSearchCallback;
Expand Down

0 comments on commit 661577c

Please sign in to comment.