We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87eae7 commit 97ca12aCopy full SHA for 97ca12a
1 file changed
src/SVNPathCopy.ShellExtension/SvnPathCopyContextMenu.cs
@@ -60,15 +60,6 @@ protected override ContextMenuStrip CreateMenu()
60
// Add separator at the top
61
menu.Items.Add(new ToolStripSeparator());
62
63
- // Test menu item - always visible for debugging
64
- var testItem = new ToolStripMenuItem { Text = "SVN Path Copy - Test (Extension Working!)", Image = icon };
65
- testItem.Click += (_, _) => MessageBox.Show(
66
- $"SVN Path Copy shell extension is working!\n\nSelected: {SelectedItemPaths.FirstOrDefault() ?? "(none)"}\nSettings Enabled: {settings.Enabled}",
67
- "SVN Path Copy Test",
68
- MessageBoxButtons.OK,
69
- MessageBoxIcon.Information);
70
- menu.Items.Add(testItem);
71
-
72
// Create "Copy SVN URL with Revision" menu item
73
if (settings.ShowCopyWithRevision)
74
{
0 commit comments