Commit bc04d5e5 authored by dickelbeck's avatar dickelbeck

delete track uses dirty rect

parent 3bb1764d
...@@ -218,10 +218,10 @@ EDA_Rect TRACK::GetBoundingBox() const ...@@ -218,10 +218,10 @@ EDA_Rect TRACK::GetBoundingBox() const
if( Type() == TYPEVIA ) if( Type() == TYPEVIA )
{ {
// because vias are sometimes drawn larger than their m_Width would // Because vias are sometimes drawn larger than their m_Width would
// provide, erasing them using a dirty rect must also compensate for // provide, erasing them using a dirty rect must also compensate for this
// possibility (that the via is larger than its m_Width would provide). // possibility (that the via is larger on screen than its m_Width would provide).
// because it is cheap to return a larger BoundingBox, do it so that // Because it is cheap to return a larger BoundingBox, do it so that
// the via gets erased properly. Do not divide width by 2 for this reason. // the via gets erased properly. Do not divide width by 2 for this reason.
radius = m_Width; radius = m_Width;
......
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