Make DRC markers always selectable.

Fixes: lp:1808181
https://bugs.launchpad.net/kicad/+bug/1808181
This commit is contained in:
jean-pierre charras 2018-12-13 09:06:38 +01:00
parent 9240a54f4a
commit 4e3fe6c55d
1 changed files with 4 additions and 0 deletions

View File

@ -1738,6 +1738,10 @@ bool SELECTION_TOOL::selectable( const BOARD_ITEM* aItem ) const
break;
}
case PCB_MARKER_T: // Always selectable
return true;
// These are not selectable
case NOT_USED:
case TYPE_NOT_INIT: