summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadek Doulik <rodo@novell.com>2011-09-01 20:36:11 +0200
committerRadek Doulik <rodo@novell.com>2011-09-01 20:36:11 +0200
commitda691c1416cdbe6f32d8f461ce2206cd41b3aa75 (patch)
tree40df1b409e94e2e56cdee931a03e8068a2949679
parent72051f5a6bd84274e9312e13a7643b01f14b459f (diff)
make the overlap smaller
-rw-r--r--vcl/source/gdi/outdev4.cxx2
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();