mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Explorer plugin native context menu: hide duplicate functionality in the native context menu
This commit is contained in:
parent
d97382f9fb
commit
adebabd824
1 changed files with 7 additions and 3 deletions
|
|
@ -65,13 +65,17 @@ public static class ShellContextMenuDisplayHelper
|
|||
private const uint ContextMenuStartId = 0x0001;
|
||||
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[] IgnoredContextMenuCommands =
|
||||
{
|
||||
"share",
|
||||
// We haven't managed to make these work, so we don't display them in the context menu.
|
||||
"Share",
|
||||
"Windows.ModernShare",
|
||||
"PinToStartScreen",
|
||||
"CopyAsPath"
|
||||
"CopyAsPath",
|
||||
|
||||
// Hide functionality provided by the Explorer plugin itself
|
||||
"Copy",
|
||||
"Delete"
|
||||
};
|
||||
|
||||
#endregion
|
||||
|
|
|
|||
Loading…
Reference in a new issue