Skip to content
Permalink
Browse files
Fix for ticket #174 (graduated colours for vectors in legend were
missing the upper value of the range)


git-svn-id: http://svn.osgeo.org/qgis/trunk@5575 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Jul 9, 2006
1 parent 6538908 commit ed44fee
Showing 1 changed file with 2 additions and 0 deletions.
@@ -306,6 +306,8 @@ QRect QgsComposerVectorLegend::render ( QPainter *p )
itemLabels[icnt] = sym->label();
} else {
itemLabels[icnt] = sym->lowerValue();
if (sym->upperValue().length() > 0)
itemLabels[icnt] += " - " + sym->upperValue();
}
}

0 comments on commit ed44fee

Please sign in to comment.