The line:

symbol = range.symbol()

where range is (I trust) a QgsRendererRangeV2 is dumping QGIS for me. Does
anyone know what circumstances can result in this? Fuller code snippet:

elif isinstance(renderer, QgsGraduatedSymbolRendererV2):
    classAttribute = renderer.classAttribute()
    attrValue = feat.attribute(classAttribute)
    ranges = renderer.ranges()
    for range in ranges:
        if (attrValue >= range.lowerValue() and
                attrValue <= range.upperValue()):
            symbol = range.symbol()



--
View this message in context: 
http://osgeo-org.1560.x6.nabble.com/QgsRendererRangeV2-symbol-dumps-QGIS-tp5255977.html
Sent from the Quantum GIS - Developer mailing list archive at Nabble.com.
_______________________________________________
Qgis-developer mailing list
[email protected]
List info: http://lists.osgeo.org/mailman/listinfo/qgis-developer
Unsubscribe: http://lists.osgeo.org/mailman/listinfo/qgis-developer

Reply via email to