We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 2a2bf2c commit f62a0bfCopy full SHA for f62a0bf
src/gui/qgscolorbutton.cpp
@@ -171,9 +171,9 @@ bool QgsColorButton::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( QgsSymbolLayerUtils::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