Fix missing PERCENT handle in preview items

This commit is contained in:
Seth Hillbrand 2019-07-01 17:30:05 -07:00
parent 34e00bdb6d
commit d65ad38e3f
1 changed files with 4 additions and 0 deletions

View File

@ -49,6 +49,10 @@ static wxString formatPreviewDimension( double aVal, EDA_UNITS_T aUnits )
precision = 1; // 0.1deg
break;
case PERCENT:
precision = 1; // 0.1%
break;
case UNSCALED_UNITS:
break;
}