From ad66af66af648e6956f1555ef95709f2a97e5fa4 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Mon, 9 May 2016 10:41:11 +0200 Subject: [PATCH] Highlight an item when context menu is displayed (GAL). --- pcbnew/tools/selection_tool.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pcbnew/tools/selection_tool.cpp b/pcbnew/tools/selection_tool.cpp index 68ce5240c0..c548c2fcfa 100644 --- a/pcbnew/tools/selection_tool.cpp +++ b/pcbnew/tools/selection_tool.cpp @@ -350,6 +350,8 @@ void SELECTION_TOOL::toggleSelection( BOARD_ITEM* aItem ) m_toolMgr->ProcessEvent( SelectedEvent ); } } + + m_frame->GetGalCanvas()->ForceRefresh(); }