Kaydet (Commit) 63f5d603 authored tarafından Christian Lohmaier's avatar Christian Lohmaier Kaydeden (comit) Andras Timar

tdf#91574 fix presenter console not displayed

The bool simplification from 3ac5138c
accidentally changed the logic of the return statement

Change-Id: Id6075356184e340dc970d2e59d1fb1d1a173d0a7
Reviewed-on: https://gerrit.libreoffice.org/16748Reviewed-by: 's avatarCaolán McNamara <caolanm@redhat.com>
Tested-by: 's avatarCaolán McNamara <caolanm@redhat.com>
üst efa3d60a
...@@ -145,7 +145,7 @@ namespace vclcanvas ...@@ -145,7 +145,7 @@ namespace vclcanvas
// avoid repaints on hidden window (hidden: not mapped to // avoid repaints on hidden window (hidden: not mapped to
// screen). Return failure, since the screen really has _not_ // screen). Return failure, since the screen really has _not_
// been updated (caller should try again later) // been updated (caller should try again later)
return !mbIsVisible && maCanvasHelper.updateScreen(bUpdateAll, return mbIsVisible && maCanvasHelper.updateScreen(bUpdateAll,
mbSurfaceDirty); mbSurfaceDirty);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment