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 4a3f134 commit e62f6d9Copy full SHA for e62f6d9
Plugins/Flow.Launcher.Plugin.WindowsSettings/Helper/ContextMenuHelper.cs
@@ -21,21 +21,7 @@ internal static class ContextMenuHelper
21
/// <returns>A list with context menu entries</returns>
22
internal static List<Result> GetContextMenu(in Result result, in string assemblyName)
23
{
24
- if (result?.ContextData is not WindowsSetting entry)
25
- {
26
- return new List<Result>(0);
27
- }
28
-
29
- var list = new List<Result>(1)
30
31
- new()
32
33
- Action = _ => TryToCopyToClipBoard(entry.Command),
34
- Title = $"{Resources.CopyCommand} (Ctrl+C)",
35
- },
36
- };
37
38
- return list;
+ return new List<Result>(0);
39
}
40
41
/// <summary>
0 commit comments