Skip to content

Commit

Permalink
Fix limited random color ramp always returns 1 less color than set
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Aug 24, 2016
1 parent b7716aa commit 1d98b10
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/core/qgscolorramp.cpp
Expand Up @@ -313,8 +313,11 @@ double QgsLimitedRandomColorRamp::value( int index ) const

QColor QgsLimitedRandomColorRamp::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 );
Expand Down

0 comments on commit 1d98b10

Please sign in to comment.