From f49e952e9b5eb95a954e268d9de593d957a8c343 Mon Sep 17 00:00:00 2001 From: Yusyuriv Date: Fri, 7 Jun 2024 12:32:08 +0600 Subject: [PATCH] Explorer plugin native context menu: add ContextData=native-context-menu-item to differentiate them in markup --- Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs index 519ff991b..95fc9c1d1 100644 --- a/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs +++ b/Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs @@ -180,7 +180,8 @@ namespace Flow.Launcher.Plugin.Explorer { ShellContextMenuDisplayHelper.ExecuteContextMenuItem(record.FullPath, menuItem.CommandId); return true; - } + }, + ContextData = "native-context-menu-item" }); } }