Skip to content
Permalink
Browse files
Fix limited random color ramp always returns 1 less color than set
(cherry-picked from 1d98b10)
  • Loading branch information
nyalldawson committed Aug 26, 2016
1 parent 8b62500 commit 787216a
Showing 1 changed file with 4 additions and 1 deletion.
@@ -313,8 +313,11 @@ double QgsVectorRandomColorRampV2::value( int index ) const

QColor QgsVectorRandomColorRampV2::color( double value ) const
{
if ( value < 0 || value > 1 )
return QColor();

int colorCnt = mColors.count();
int colorIdx = static_cast< int >( value * ( colorCnt - 1 ) );
int colorIdx = qMin( static_cast< int >( value * colorCnt ), colorCnt - 1 );

if ( colorIdx >= 0 && colorIdx < colorCnt )
return mColors.at( colorIdx );

0 comments on commit 787216a

Please sign in to comment.