Schematic: don't show unselected ends on bus entries

This commit is contained in:
Mike Williams 2022-12-27 09:26:07 -05:00
parent c85590a470
commit 1ad373f2b2
1 changed files with 2 additions and 2 deletions

View File

@ -1690,7 +1690,7 @@ void SCH_PAINTER::draw( const SCH_LINE *aLine, int aLayer )
if( drawingDangling || drawingShadows )
{
if( ( aLine->IsWire() && aLine->IsStartDangling() )
|| ( drawingShadows && aLine->IsSelected() && !aLine->IsNew()
|| ( aLine->IsGraphicLine() && drawingShadows && aLine->IsSelected() && !aLine->IsNew()
&& !aLine->HasFlag( STARTPOINT ) ) )
{
COLOR4D danglingColor =
@ -1702,7 +1702,7 @@ void SCH_PAINTER::draw( const SCH_LINE *aLine, int aLayer )
}
if( ( aLine->IsWire() && aLine->IsEndDangling() )
|| ( drawingShadows && aLine->IsSelected() && !aLine->IsNew()
|| ( aLine->IsGraphicLine() && drawingShadows && aLine->IsSelected() && !aLine->IsNew()
&& !aLine->HasFlag( ENDPOINT ) ) )
{
COLOR4D danglingColor =