From 79b2d60666d72a46299b35b14c77a9891e6fd102 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Fri, 23 Jun 2017 15:19:04 +0200 Subject: [PATCH] Reenabled pad number increment on placement (module editor) --- pcbnew/tools/module_editor_tools.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/tools/module_editor_tools.cpp b/pcbnew/tools/module_editor_tools.cpp index c5a9f15541..75941577a1 100644 --- a/pcbnew/tools/module_editor_tools.cpp +++ b/pcbnew/tools/module_editor_tools.cpp @@ -104,7 +104,7 @@ int MODULE_EDITOR_TOOLS::PlacePad( const TOOL_EVENT& aEvent ) { D_PAD* pad = new D_PAD ( m_board->m_Modules ); m_frame->Import_Pad_Settings( pad, false ); // use the global settings for pad - // pad->IncrementPadName( true, true ); + pad->IncrementPadName( true, true ); return std::unique_ptr( pad ); } };