Skip to content

Commit 89c38ed

Browse files
committed
[composer] Fix node based items (line/polygon) ignore exclude
from export setting Fixes #17086
1 parent aec8cd3 commit 89c38ed

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/core/composer/qgscomposernodesitem.cpp

+5
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)