From 4cbfcb582b6dfd776c7ddb6686f4bff4061b795a Mon Sep 17 00:00:00 2001 From: Pino Toscano Date: Tue, 13 Nov 2007 23:03:22 +0000 Subject: [PATCH] for now, paint the external annotations as well, as we have no way to know whether the general is able to paint them svn path=/trunk/KDE/kdegraphics/okular/; revision=736321 --- ui/pagepainter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/pagepainter.cpp b/ui/pagepainter.cpp index 75794c1b0..343a2ccca 100644 --- a/ui/pagepainter.cpp +++ b/ui/pagepainter.cpp @@ -143,7 +143,7 @@ void PagePainter::paintPageOnPainter( QPainter * destPainter, const Okular::Page for ( ; aIt != aEnd; ++aIt ) { Okular::Annotation * ann = *aIt; - if ( ann->flags() & ( Okular::Annotation::Hidden | Okular::Annotation::External ) ) + if ( ann->flags() & ( Okular::Annotation::Hidden /*| Okular::Annotation::External*/ ) ) continue; bool intersects = ann->transformedBoundingRectangle().intersects( nXMin, nYMin, nXMax, nYMax );