Pcbnew: minor cosmetic enhancement:in status panel, for polygon graphic shape:
shows the coordinates of the first polygon point (instead of 0,0 coordinates)
This commit is contained in:
parent
3370e89967
commit
a9f9540fa4
|
@ -503,14 +503,27 @@ void DRAWSEGMENT::GetMsgPanelInfo( EDA_UNITS_T aUnits, std::vector< MSG_PANEL_IT
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
wxString start = wxString::Format( "@(%s, %s)",
|
if( m_Shape == S_POLYGON )
|
||||||
MessageTextFromValue( aUnits, GetStart().x ),
|
{
|
||||||
MessageTextFromValue( aUnits, GetStart().y ) );
|
VECTOR2I point0 = GetPolyShape().Outline(0).CPoint(0);
|
||||||
wxString end = wxString::Format( "@(%s, %s)",
|
wxString origin = wxString::Format( "@(%s, %s)",
|
||||||
MessageTextFromValue( aUnits, GetEnd().x ),
|
MessageTextFromValue( aUnits, point0.x ),
|
||||||
MessageTextFromValue( aUnits, GetEnd().y ) );
|
MessageTextFromValue( aUnits, point0.y ) );
|
||||||
|
|
||||||
|
aList.emplace_back( _( "Origin" ), origin, DARKGREEN );
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
wxString start = wxString::Format( "@(%s, %s)",
|
||||||
|
MessageTextFromValue( aUnits, GetStart().x ),
|
||||||
|
MessageTextFromValue( aUnits, GetStart().y ) );
|
||||||
|
wxString end = wxString::Format( "@(%s, %s)",
|
||||||
|
MessageTextFromValue( aUnits, GetEnd().x ),
|
||||||
|
MessageTextFromValue( aUnits, GetEnd().y ) );
|
||||||
|
|
||||||
|
aList.emplace_back( start, end, DARKGREEN );
|
||||||
|
}
|
||||||
|
|
||||||
aList.emplace_back( start, end, DARKGREEN );
|
|
||||||
aList.emplace_back( _( "Layer" ), GetLayerName(), DARKBROWN );
|
aList.emplace_back( _( "Layer" ), GetLayerName(), DARKBROWN );
|
||||||
|
|
||||||
msg = MessageTextFromValue( aUnits, m_Width, true );
|
msg = MessageTextFromValue( aUnits, m_Width, true );
|
||||||
|
|
Loading…
Reference in New Issue