added missing space in file when saving graphic texts justification
This commit is contained in:
parent
8a5179fc70
commit
b4bd181d07
|
@ -376,6 +376,10 @@ void LibDrawArc::DisplayInfo( WinEDA_DrawFrame* frame )
|
|||
}
|
||||
|
||||
|
||||
/*************************/
|
||||
/** class LibDrawCircle **/
|
||||
/*************************/
|
||||
|
||||
LibDrawCircle::LibDrawCircle() : LibEDA_BaseStruct( COMPONENT_CIRCLE_DRAW_TYPE )
|
||||
{
|
||||
m_Rayon = 0;
|
||||
|
@ -559,7 +563,7 @@ bool LibDrawText::Save( FILE* ExportFile ) const
|
|||
else if( m_VJustify == GR_TEXT_VJUSTIFY_TOP )
|
||||
vjustify = 'T';
|
||||
|
||||
fprintf( ExportFile, "%c %c", hjustify, vjustify );
|
||||
fprintf( ExportFile, " %c %c", hjustify, vjustify );
|
||||
|
||||
fprintf( ExportFile, "\n" );
|
||||
|
||||
|
@ -854,6 +858,9 @@ EDA_Rect LibDrawSquare::GetBoundingBox()
|
|||
}
|
||||
|
||||
|
||||
/**************************/
|
||||
/** class LibDrawSegment **/
|
||||
/**************************/
|
||||
LibDrawSegment::LibDrawSegment() : LibEDA_BaseStruct( COMPONENT_LINE_DRAW_TYPE )
|
||||
{
|
||||
m_Width = 0;
|
||||
|
@ -933,6 +940,9 @@ void LibDrawSegment::DisplayInfo( WinEDA_DrawFrame* frame )
|
|||
}
|
||||
|
||||
|
||||
/***************************/
|
||||
/** class LibDrawPolyline **/
|
||||
/***************************/
|
||||
LibDrawPolyline::LibDrawPolyline() :
|
||||
LibEDA_BaseStruct( COMPONENT_POLYLINE_DRAW_TYPE )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue