Skip to content

Commit c550e82

Browse files
authoredSep 2, 2017
Merge pull request #5108 from nyalldawson/fix_17086
[composer] Fix node based items (line/polygon) ignore exclude from export setting
2 parents 474f39a + 89c38ed commit c550e82

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/core/composer/qgscomposernodesitem.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,11 @@ void QgsComposerNodesItem::paint( QPainter* painter,
202202
if ( !painter )
203203
return;
204204

205+
if ( !shouldDrawItem() )
206+
{
207+
return;
208+
}
209+
205210
painter->save();
206211
painter->setPen( Qt::NoPen );
207212
painter->setBrush( Qt::NoBrush );

0 commit comments

Comments
 (0)
Please sign in to comment.