Browse Source

Fix a non ASCII7 string in a message. Only ASCII7 chars can be used in sources.

Non ASCII7 symbols are not allowed because the encoding is OS dependent.
pull/7/merge
jean-pierre charras 9 years ago
parent
commit
1e770f56a6
  1. 6
      common/preview_items/preview_utils.cpp

6
common/preview_items/preview_utils.cpp

@ -22,13 +22,9 @@
*/
#include <preview_items/preview_utils.h>
#include <gal/graphics_abstraction_layer.h>
#include <base_units.h>
using namespace KIGFX;
COLOR4D KIGFX::PREVIEW::PreviewOverlayDefaultColor()
{
@ -65,7 +61,7 @@ static wxString getDimensionUnit( EDA_UNITS_T aUnits )
return _( "mm" );
case DEGREES:
return _( "°" );
return _( "deg" );
case UNSCALED_UNITS:
break;

Loading…
Cancel
Save