diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-04-11 00:11:18 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-04-11 19:14:41 +0300 |
commit | 48d3902b96581831b06565841d1dd54099428271 (patch) | |
tree | 85f418f4e579b12f17ec296ce5828be1a1b28c2c /vcl | |
parent | 3d2624a30117e31d264def62b74d71e1a2189b0c (diff) |
Log the stretch factor if different from one
Change-Id: I37472b779f0e455892f4fe2cfe93023c14335400
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/coretext/salcoretextstyle.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/coretext/salcoretextstyle.cxx b/vcl/coretext/salcoretextstyle.cxx index a4297380780f..ca9f2782fa6e 100644 --- a/vcl/coretext/salcoretextstyle.cxx +++ b/vcl/coretext/salcoretextstyle.cxx @@ -119,6 +119,8 @@ std::ostream &operator <<(std::ostream& s, CoreTextStyleInfo &rStyle) #else s << "{Font=" << rStyle.GetFont(); s << ",Color=" << rStyle.GetColor(); + if (rStyle.GetFontStretchFactor() != 1) + s << ",Stretch=" << rStyle.GetFontStretchFactor(); s << "}"; #endif return s; |