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
This commit is contained in:
Pino Toscano 2007-11-13 23:03:22 +00:00
parent cb50789290
commit 4cbfcb582b

View file

@ -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 );