Commit e4508a65 authored by Lorenzo Marcantonio's avatar Lorenzo Marcantonio

Missing const caused unpickability of tracks

parent b933ef85
......@@ -1231,7 +1231,7 @@ void VIA::GetMsgPanelInfoBase( std::vector< MSG_PANEL_ITEM >& aList )
}
bool TRACK::HitTest( const wxPoint& aPosition )
bool TRACK::HitTest( const wxPoint& aPosition ) const
{
return TestSegmentHit( aPosition, m_Start, m_End, m_Width / 2 );
}
......
......@@ -223,7 +223,7 @@ public:
const KICAD_T scanTypes[] );
virtual bool HitTest( const wxPoint& aPosition );
virtual bool HitTest( const wxPoint& aPosition ) const;
/** @copydoc BOARD_ITEM::HitTest(const EDA_RECT& aRect,
* bool aContained = true, int aAccuracy ) const
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment