From 677240cd2a93674b17beefcd337331ff75751d98 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Wed, 9 Jul 2014 11:22:43 +0200 Subject: [PATCH] bugfix: pads edited with properties dialog were not refreshed. bugfix: changing track width/via size using the dropdown menu when custom size was enabled did not change anything. --- pcbnew/tools/edit_tool.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcbnew/tools/edit_tool.cpp b/pcbnew/tools/edit_tool.cpp index db08a607a5..675d95dc39 100644 --- a/pcbnew/tools/edit_tool.cpp +++ b/pcbnew/tools/edit_tool.cpp @@ -270,6 +270,7 @@ int EDIT_TOOL::Properties( TOOL_EVENT& aEvent ) updateRatsnest( true ); getModel()->GetRatsnest()->Recalculate(); + item->ViewUpdate(); m_toolMgr->RunAction( COMMON_ACTIONS::pointEditorUpdate ); }