Pcbnew: make option Tracks filled/sketch working for track arc shaped.

Fixes #6096
https://gitlab.com/kicad/code/kicad/issues/6096
This commit is contained in:
jean-pierre charras 2020-10-21 19:43:14 +02:00
parent c87faad344
commit 36f68dd39f
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ int PCBNEW_CONTROL::TrackDisplayMode( const TOOL_EVENT& aEvent )
for( auto track : board()->Tracks() )
{
if( track->Type() == PCB_TRACE_T )
if( track->Type() == PCB_TRACE_T || track->Type() == PCB_ARC_T )
view()->Update( track, KIGFX::GEOMETRY );
}