We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d97382f commit adebabdCopy full SHA for adebabd
Plugins/Flow.Launcher.Plugin.Explorer/Helper/ShellContextMenuDisplayHelper.cs
@@ -65,13 +65,17 @@ private static extern uint GetMenuString(
65
private const uint ContextMenuStartId = 0x0001;
66
private const uint ContextMenuEndId = 0x7FFF;
67
68
- // We haven't managed to make these work, so we don't display them in the context menu.
69
private static readonly string[] IgnoredContextMenuCommands =
70
{
71
- "share",
+ // We haven't managed to make these work, so we don't display them in the context menu.
+ "Share",
72
"Windows.ModernShare",
73
"PinToStartScreen",
74
- "CopyAsPath"
+ "CopyAsPath",
75
+
76
+ // Hide functionality provided by the Explorer plugin itself
77
+ "Copy",
78
+ "Delete"
79
};
80
81
#endregion
0 commit comments