Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Applied patch from ticket #565 Do not render features or their labels…
… if their classification value doesn't match a symbol's lower/upper range git-svn-id: http://svn.osgeo.org/qgis/branches/Release-0_8_0@6502 c8812cc2-4d05-0410-92ff-de0c093fc19c
- Loading branch information
Showing
with
65 additions
and 22 deletions.
- +5 −0 src/core/qgsrenderer.cpp
- +3 −0 src/core/qgsrenderer.h
- +29 −13 src/gui/qgsgraduatedsymbolrenderer.cpp
- +7 −0 src/gui/qgsgraduatedsymbolrenderer.h
- +21 −9 src/gui/qgsvectorlayer.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -72,3 +72,8 @@ bool QgsRenderer::containsPixmap() const | ||
} | ||
} | ||
|
||
bool QgsRenderer::willRenderFeature(QgsFeature *f) | ||
{ | ||
// Normally render the feature, unless told otherwise | ||
return true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters