Skip to content

Commit 97ca12a

Browse files
committed
fix: remove test menu item from context menu for cleaner UI
1 parent d87eae7 commit 97ca12a

1 file changed

Lines changed: 0 additions & 9 deletions

File tree

src/SVNPathCopy.ShellExtension/SvnPathCopyContextMenu.cs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -60,15 +60,6 @@ protected override ContextMenuStrip CreateMenu()
6060
// Add separator at the top
6161
menu.Items.Add(new ToolStripSeparator());
6262

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-
7263
// Create "Copy SVN URL with Revision" menu item
7364
if (settings.ShowCopyWithRevision)
7465
{

0 commit comments

Comments
 (0)