We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3005241 commit 1a495d0Copy full SHA for 1a495d0
src/gui/qgscolorbuttonv2.cpp
@@ -171,9 +171,9 @@ bool QgsColorButtonV2::event( QEvent *e )
171
int saturation = this->color().saturation();
172
QString info = QString( "HEX: %1 \n"
173
"RGB: %2 \n"
174
- "HSV: %3,%4,%4" ).arg( name )
+ "HSV: %3,%4,%5" ).arg( name )
175
.arg( QgsSymbolLayerV2Utils::encodeColor( this->color() ) )
176
- .arg( hue ).arg( value ).arg( saturation );
+ .arg( hue ).arg( saturation ).arg( value );
177
setToolTip( info );
178
}
179
return QToolButton::event( e );
0 commit comments