indentation

Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
Ivailo Monev 2019-07-28 13:42:00 +00:00
parent 14ae7fc867
commit c07636dc89

View file

@ -1238,7 +1238,7 @@ void QColorShower::setRgb(QRgb rgb)
void QColorShower::setHsv(int h, int s, int v)
{
if (h < -1 || (uint)s > 255 || (uint)v > 255)
return;
return;
hue = h; val = v; sat = s;
QColor c;