Pcbnew: fixed a problem when using graphic arcs in board.

This commit is contained in:
jp 2010-05-05 11:21:28 +02:00
parent 033d691727
commit 42aea17946
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
; General Product Description Definitions
!define PRODUCT_NAME "KiCad"
!define PRODUCT_VERSION "2010.04.06"
!define PRODUCT_VERSION "2010.05.04"
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
!define COMPANY_NAME ""

View File

@ -387,7 +387,7 @@ void DRAWSEGMENT::DisplayInfo( WinEDA_DrawFrame* frame )
case S_ARC:
frame->AppendMsgPanel( shape, _( "Arc" ), RED );
msg.Printf( wxT( "%1." ), (float)m_Angle/10 );
msg.Printf( wxT( "%.1f" ), (double)m_Angle/10 );
frame->AppendMsgPanel( _("Angle"), msg, RED );
break;
case S_CURVE: