From c87a5ff0ab1c3f74624b5efb9072fee4e7c9fa8b Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Fri, 30 Sep 2022 13:04:18 +0100 Subject: [PATCH] Remove elipsis from Remove Teardrops. Fixes https://gitlab.com/kicad/code/kicad/issues/12550 --- pcbnew/menubar_pcb_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/menubar_pcb_editor.cpp b/pcbnew/menubar_pcb_editor.cpp index 2326d6c44d..b603427ff5 100644 --- a/pcbnew/menubar_pcb_editor.cpp +++ b/pcbnew/menubar_pcb_editor.cpp @@ -416,7 +416,7 @@ void PCB_EDIT_FRAME::ReCreateMenuBar() // Add/remove teardrops menuitems: toolsMenu->AppendSeparator(); toolsMenu->Add( _( "Add Teardrops..." ), "", ID_RUN_TEARDROP_TOOL, BITMAPS::via ); - toolsMenu->Add( _( "Remove Teardrops..." ), "", ID_REMOVE_TEARDROP_TOOL, BITMAPS::via ); + toolsMenu->Add( _( "Remove Teardrops" ), "", ID_REMOVE_TEARDROP_TOOL, BITMAPS::via ); toolsMenu->AppendSeparator(); toolsMenu->Add( PCB_ACTIONS::cleanupTracksAndVias );