diff options
author | Radek Doulik <rodo@novell.com> | 2011-09-01 20:36:11 +0200 |
---|---|---|
committer | Radek Doulik <rodo@novell.com> | 2011-09-01 20:36:11 +0200 |
commit | da691c1416cdbe6f32d8f461ce2206cd41b3aa75 (patch) | |
tree | 40df1b409e94e2e56cdee931a03e8068a2949679 /vcl | |
parent | 72051f5a6bd84274e9312e13a7643b01f14b459f (diff) |
make the overlap smaller
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/outdev4.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/outdev4.cxx b/vcl/source/gdi/outdev4.cxx index 0205f21d13ef..1de42d72fd0b 100644 --- a/vcl/source/gdi/outdev4.cxx +++ b/vcl/source/gdi/outdev4.cxx @@ -319,7 +319,7 @@ void OutputDevice::ImplDrawLinearGradient( const Rectangle& rRect, /* n#710061 Use overlapping fills to avoid color * leak via gaps in some pdf viewers */ - Point aOverLap( 0, fScanInc*5 ); + Point aOverLap( 0, fScanInc*.1 ); aPoly[0] = aFullRect.TopLeft(); aPoly[1] = aFullRect.TopRight(); aPoly[2] = aRect.TopRight(); |