Removed unnecessary debug message
This commit is contained in:
parent
e00c8e92cb
commit
4c2e3b9a59
|
@ -210,11 +210,8 @@ void SELECTION_TOOL::selectSingle( const VECTOR2I& aWhere )
|
||||||
{
|
{
|
||||||
BOARD_ITEM* boardItem = ( collector )[i];
|
BOARD_ITEM* boardItem = ( collector )[i];
|
||||||
if( boardItem->Type() == PCB_MODULE_T )
|
if( boardItem->Type() == PCB_MODULE_T )
|
||||||
{
|
|
||||||
wxLogDebug( wxT( "Removing %s" ), boardItem->GetSelectMenuText() );
|
|
||||||
collector.Remove( i );
|
collector.Remove( i );
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// Let's see if there is still disambiguation in selection..
|
// Let's see if there is still disambiguation in selection..
|
||||||
if( collector.GetCount() == 1 )
|
if( collector.GetCount() == 1 )
|
||||||
|
|
Loading…
Reference in New Issue