From 1b058cae1e8cc52615bb889aabe04294046a149b Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Wed, 6 Aug 2014 09:33:10 +0200 Subject: [PATCH] Disable highlight mode in the module editor (GAL). --- pcbnew/tools/selection_tool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcbnew/tools/selection_tool.cpp b/pcbnew/tools/selection_tool.cpp index 68afe3b1b3..095f643bca 100644 --- a/pcbnew/tools/selection_tool.cpp +++ b/pcbnew/tools/selection_tool.cpp @@ -101,7 +101,7 @@ int SELECTION_TOOL::Main( TOOL_EVENT& aEvent ) // single click? Select single object if( evt->IsClick( BUT_LEFT ) ) { - if( evt->Modifier( MD_CTRL ) ) + if( evt->Modifier( MD_CTRL ) && !m_editModules ) { highlightNet( evt->Position() ); }