Fixed an assert

This commit is contained in:
Maciej Suminski 2018-02-20 11:00:40 +01:00
parent 3626129631
commit 602acf1b7c
1 changed files with 1 additions and 1 deletions

View File

@ -815,7 +815,7 @@ void DIALOG_PAD_PROPERTIES::displayPrimitivesList()
case S_POLYGON: // polygon
bs_info[0] = "Polygon";
bs_info[1] = wxString::Format( _( "corners count %d" ), primitive.m_Poly.size() );
bs_info[1] = wxString::Format( _( "corners count %d" ), (int) primitive.m_Poly.size() );
break;
default: