Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
2 changes: 2 additions & 0 deletions src/composer/qgscomposervectorlegend.cpp
Expand Up @@ -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();
}
}

Expand Down

0 comments on commit ed44fee

Please sign in to comment.