Pl_Editor: fix a very minor issue when displaying the page size in status bar.

This commit is contained in:
jean-pierre charras 2013-07-24 17:19:37 +02:00
parent 28cd996394
commit ee749988f1
1 changed files with 2 additions and 2 deletions

View File

@ -416,14 +416,14 @@ void PL_EDITOR_FRAME::UpdateStatusBar()
{
case INCHES: // Should not be used in page layout editor
SetStatusText( _("inches"), 5 );
pagesizeformatter = wxT( "Page size: width %.4g height %.4g" );
pagesizeformatter = wxT( "Page size: width %4g height %4g" );
absformatter = wxT( "X %.4g Y %.4g" );
locformatter = wxT( "dx %.4g dy %.4g" );
break;
case MILLIMETRES:
SetStatusText( _("mm"), 5 );
pagesizeformatter = wxT( "Page size: width %.3g height %.3g" );
pagesizeformatter = wxT( "Page size: width %3g height %3g" );
absformatter = wxT( "X %.3g Y %.3g" );
locformatter = wxT( "dx %.3g dy %.3g" );
break;