| Index: src/core/SkFontStyle.cpp
|
| diff --git a/src/core/SkFontStyle.cpp b/src/core/SkFontStyle.cpp
|
| index fc50f1f73fb7ce2ad27e91cfc5af89bdeb43efb9..a24e7cde2e7d35437f4063d2b52d25f112d8e75b 100644
|
| --- a/src/core/SkFontStyle.cpp
|
| +++ b/src/core/SkFontStyle.cpp
|
| @@ -19,7 +19,7 @@ SkFontStyle::SkFontStyle() {
|
| SkFontStyle::SkFontStyle(int weight, int width, Slant slant) {
|
| fUnion.fU32 = 0;
|
| fUnion.fR.fWeight = SkTPin<int>(weight, kInvisible_Weight, kExtraBlack_Weight);
|
| - fUnion.fR.fWidth = SkTPin<int>(width, kUltraCondensed_Width, kUltaExpanded_Width);
|
| + fUnion.fR.fWidth = SkTPin<int>(width, kUltraCondensed_Width, kUltraExpanded_Width);
|
| fUnion.fR.fSlant = SkTPin<int>(slant, kUpright_Slant, kOblique_Slant);
|
| }
|
|
|
|
|