Skip to content

Commit

Permalink
[composer] Fix node based items (line/polygon) ignore exclude
Browse files Browse the repository at this point in the history
from export setting

Fixes #17086

(forward port from 89c38ed)
  • Loading branch information
nyalldawson committed Sep 2, 2017
1 parent 4626441 commit 14ce8b5
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/core/composer/qgscomposernodesitem.cpp
Expand Up @@ -189,6 +189,11 @@ void QgsComposerNodesItem::paint( QPainter *painter,
if ( !painter )
return;

if ( !shouldDrawItem() )
{
return;
}

painter->save();
painter->setPen( Qt::NoPen );
painter->setBrush( Qt::NoBrush );
Expand Down

0 comments on commit 14ce8b5

Please sign in to comment.