debug operator simplified

This commit is contained in:
Uwe Rathmann 2022-11-18 12:15:20 +01:00
parent 46d2b20df0
commit 19f01c0232

View File

@ -595,16 +595,11 @@ QDebug operator<<( QDebug debug, const QskGradient& gradient )
case QskGradient::Stops:
{
debug << "S()";
break;
}
}
if ( gradient.stops().isEmpty() )
{
debug << " ()";
}
else
if ( !gradient.stops().isEmpty() )
{
if ( gradient.isMonochrome() )
{