From 5f4530493af8c7a87ec0ccefd4c24847fc5c9935 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Thu, 13 Dec 2018 09:06:38 +0100 Subject: [PATCH] Make DRC markers always selectable. Fixes: lp:1808181 https://bugs.launchpad.net/kicad/+bug/1808181 --- pcbnew/tools/selection_tool.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pcbnew/tools/selection_tool.cpp b/pcbnew/tools/selection_tool.cpp index e0e0e72907..bdffafc4a9 100644 --- a/pcbnew/tools/selection_tool.cpp +++ b/pcbnew/tools/selection_tool.cpp @@ -1756,6 +1756,10 @@ bool SELECTION_TOOL::selectable( const BOARD_ITEM* aItem, bool checkVisibilityOn break; } + + case PCB_MARKER_T: // Always selectable + return true; + // These are not selectable case NOT_USED: case TYPE_NOT_INIT: