diff options
author | Jan Holesovsky <kendy@suse.cz> | 2011-12-27 22:25:36 +0100 |
---|---|---|
committer | Jan Holesovsky <kendy@suse.cz> | 2011-12-27 22:30:51 +0100 |
commit | e0e52ce536f6b4b69280d41d77fc6d43d23958f3 (patch) | |
tree | 2d6e7d7a7c7ba50236e546235e569eb33ddd1f5f /vcl | |
parent | 640c1788efe181bbf834fb78ebb3c08820847a7e (diff) |
Fix drawing of the either horizontally, or vertically mirrored bitmaps.
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/gdi/outdev2.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/gdi/outdev2.cxx b/vcl/source/gdi/outdev2.cxx index 3ee7254d067f..329f5f44962e 100644 --- a/vcl/source/gdi/outdev2.cxx +++ b/vcl/source/gdi/outdev2.cxx @@ -1783,7 +1783,7 @@ Bitmap OutputDevice::ImplBlend( Bitmap aBmp, aTR.mnDestWidth = aOutSz.Width(); aTR.mnDestHeight= aOutSz.Height(); - if( !bHMirr || !bVMirr ) + if( !bHMirr && !bVMirr ) bFastBlend = ImplFastBitmapBlending( *pB,*pP,*pA, aTR ); } |