-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -361,6 +361,7 @@ QDomElement QgsHeatmapRenderer::save( QDomDocument& doc ) | |
rendererElem.appendChild( colorRampElem ); | ||
} | ||
rendererElem.setAttribute( "invert_ramp", QString::number( mInvertRamp ) ); | ||
rendererElem.setAttribute( "forceraster", ( mForceRaster ? "1" : "0" ) ); | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
nyalldawson
Author
Collaborator
|
||
|
||
if ( mPaintEffect && !QgsPaintEffectRegistry::isDefaultStack( mPaintEffect ) ) | ||
mPaintEffect->saveProperties( doc, rendererElem ); | ||
|
@@ -371,6 +372,7 @@ QDomElement QgsHeatmapRenderer::save( QDomDocument& doc ) | |
mOrderBy.save( orderBy ); | ||
rendererElem.appendChild( orderBy ); | ||
} | ||
rendererElem.setAttribute( "enableorderby", ( mOrderByEnabled ? "1" : "0" ) ); | ||
|
||
return rendererElem; | ||
} | ||
|
2 comments
on commit 4285d70
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nyalldawson I think this created a regression with the 2.5D symbology. Now, the order by [x] checkbox is always de-activated for 2.5D symbology, messing the 2.5D stacking of features.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks Nyall,
I just started to look into this issue and wondered why it already looked like there's nothing left to do 😆
Just to make sure: This is unrelated to the order-by issue but nonetheless intended?