diff options
author | Andras Timar <andras.timar@collabora.com> | 2015-06-19 16:25:40 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2015-06-19 16:25:40 +0200 |
commit | c7658a1efd3ce9158ff9db1dd30b681d24462b51 (patch) | |
tree | 7c9af2cc348052db8989aabacb65a35a061044e3 /vcl | |
parent | c15b96a4b9ad0c37e7848e8460732e7d088529e3 (diff) |
tdf#91467 FixedText vertical orientation restored
Change-Id: Ic4b74d769ee4370c5182c9921483c7ec0b2c7a94
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/control/fixed.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/control/fixed.cxx b/vcl/source/control/fixed.cxx index 303b1652a011..bdbff17f22da 100644 --- a/vcl/source/control/fixed.cxx +++ b/vcl/source/control/fixed.cxx @@ -546,7 +546,7 @@ void FixedLine::ImplDraw(vcl::RenderContext& rRenderContext, bool bLayout) long nWidth = rRenderContext.GetTextWidth(aText); rRenderContext.Push(PushFlags::FONT); vcl::Font aFont(rRenderContext.GetFont()); - aFont.SetOrientation(00); + aFont.SetOrientation(900); SetFont(aFont); Point aStartPt(aOutSize.Width() / 2, aOutSize.Height() - 1); if (nWinStyle & WB_VCENTER) |