Eeschema: IsCorner check for layer match

SCH_LINE can represent a bus, wire or graphic line.  Checking
for the corner needs to distinguish between these types.

Fixes: lp:1635984
* https://bugs.launchpad.net/kicad/+bug/1635984
This commit is contained in:
Seth Hillbrand 2017-11-27 14:44:41 -08:00 committed by Wayne Stambaugh
parent 8f79f0a66d
commit 7b1938d999
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ bool SCH_COLLECTOR::IsCorner() const
bool is_busentry1 = (dynamic_cast<SCH_BUS_ENTRY_BASE*>( m_List[1] ) != NULL);
if( (m_List[0]->Type() == SCH_LINE_T) && (m_List[1]->Type() == SCH_LINE_T) )
return true;
return ( ( SCH_LINE* ) m_List[0])->GetLayer() == ( ( SCH_LINE* ) m_List[1])->GetLayer();
if( (m_List[0]->Type() == SCH_LINE_T) && is_busentry1 )
return true;