Merge pull request #5109 from nyalldawson/fix_17086

[composer] Fix node based items (line/polygon) ignore exclude from export setting
This commit is contained in:
Nyall Dawson 2017-09-02 14:12:46 +10:00 committed by GitHub
commit 56040c41e8

View File

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