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:
parent
c87faad344
commit
36f68dd39f
|
@ -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 );
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue