CmdPal: fix files not having an open command (#40990)

Yea, it's that dumb.

Regressed in #40768
This commit is contained in:
Mike Griese
2025-08-05 14:15:52 -05:00
committed by GitHub
parent 7bcddfeb09
commit 281c88a620

View File

@@ -85,6 +85,10 @@ internal sealed partial class IndexerListItem : ListItem
commands.Add(new CommandContextItem(openCommand));
}
}
else
{
commands.Add(new CommandContextItem(openCommand));
}
commands.Add(new CommandContextItem(new OpenWithCommand(fullPath)));
commands.Add(new CommandContextItem(new ShowFileInFolderCommand(fullPath) { Name = Resources.Indexer_Command_ShowInFolder }));