slideshow/source/engine/slideview.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 6f7a003ef738e3b11ff8d577c2b350b50d416235 Author: Thorsten Behrens <tbehr...@suse.com> Date: Fri Mar 16 10:02:18 2012 +0100 Clear sprites to white fdo#45219. Another fix for a rendering glitch mentioned in fdo#45219 - vclcanvas sadly does not properly implement compositing, so all- black background yields dark shadows on semi-transparent objects. Ultimately though, we should retire vclcanvas instead. (cherry picked from commit b9266113514657be1cf9352e1457a5c62876784c) Signed-off-by: Tor Lillqvist <tlillqv...@suse.com> diff --git a/slideshow/source/engine/slideview.cxx b/slideshow/source/engine/slideview.cxx index 001f533..0d55528 100644 --- a/slideshow/source/engine/slideview.cxx +++ b/slideshow/source/engine/slideview.cxx @@ -206,7 +206,7 @@ void clearRect( ::cppcanvas::CanvasSharedPtr const& pCanvas, if( pPolyPoly ) { pPolyPoly->setCompositeOp( cppcanvas::CanvasGraphic::SOURCE ); - pPolyPoly->setRGBAFillColor( 0x00000000U ); + pPolyPoly->setRGBAFillColor( 0xFFFFFF00U ); pPolyPoly->draw(); } _______________________________________________ Libreoffice-commits mailing list Libreoffice-commits@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits