mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Explorer plugin native context menu: rename the list of ignored commands to better describe it
This commit is contained in:
parent
0987922cf8
commit
3ee870b249
1 changed files with 2 additions and 2 deletions
|
|
@ -66,7 +66,7 @@ public static class ShellContextMenuDisplayHelper
|
|||
private const uint ContextMenuEndId = 0x7FFF;
|
||||
|
||||
// We haven't managed to make these work, so we don't display them in the context menu.
|
||||
private static readonly string[] IgnoredContextMenuOptions =
|
||||
private static readonly string[] IgnoredContextMenuCommands =
|
||||
{
|
||||
"share",
|
||||
"Windows.ModernShare",
|
||||
|
|
@ -286,7 +286,7 @@ public static class ShellContextMenuDisplayHelper
|
|||
commandBuilder,
|
||||
commandBuilder.Capacity
|
||||
);
|
||||
if (IgnoredContextMenuOptions.Contains(commandBuilder.ToString(), StringComparer.OrdinalIgnoreCase))
|
||||
if (IgnoredContextMenuCommands.Contains(commandBuilder.ToString(), StringComparer.OrdinalIgnoreCase))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue