canvas/source/vcl/spritecanvas.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit f96b38ddda1759023e6021511d6d660abf98a54e Author: Christian Lohmaier <lohmaier+libreoff...@googlemail.com> Date: Thu Jul 2 19:35:43 2015 +0200 tdf#91574 fix presenter console not displayed The bool simplification from 3ac5138cfc01c1795ae05963fa4e5a6c7d22f4de accidentally changed the logic of the return statement Change-Id: Id6075356184e340dc970d2e59d1fb1d1a173d0a7 Reviewed-on: https://gerrit.libreoffice.org/16724 Reviewed-by: Michael Stahl <mst...@redhat.com> Tested-by: Jenkins <c...@libreoffice.org> Reviewed-by: Caolán McNamara <caol...@redhat.com> Tested-by: Caolán McNamara <caol...@redhat.com> diff --git a/canvas/source/vcl/spritecanvas.cxx b/canvas/source/vcl/spritecanvas.cxx index bcfe42d..91e2103 100644 --- a/canvas/source/vcl/spritecanvas.cxx +++ b/canvas/source/vcl/spritecanvas.cxx @@ -145,7 +145,7 @@ namespace vclcanvas // avoid repaints on hidden window (hidden: not mapped to // screen). Return failure, since the screen really has _not_ // been updated (caller should try again later) - return !mbIsVisible && maCanvasHelper.updateScreen(bUpdateAll, + return mbIsVisible && maCanvasHelper.updateScreen(bUpdateAll, mbSurfaceDirty); }
_______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits