diff --git a/upptst/CharMetrics/main.cpp b/upptst/CharMetrics/main.cpp index 1daad55bd..c58a9ea64 100644 --- a/upptst/CharMetrics/main.cpp +++ b/upptst/CharMetrics/main.cpp @@ -12,8 +12,9 @@ struct MyApp : TopWindow { w.DrawText(Zx(220), 0, String() << fnt.GetFaceName() << ", ascent: " << fnt.GetAscent() << ", descent: " << fnt.GetDescent() - << ", external: " << fnt.GetExternal()); - RTIMING("Draw"); + << ", external: " << fnt.GetExternal() + << (fnt.IsSerif() ? ", [serif]" : "") + << (fnt.IsScript() ? ", [script]" : "")); int y = 50; for(int p = 32; p < 8192 && y < sz.cy; p += 64) { int x = 0;