beautified

This commit is contained in:
Uwe Rathmann 2022-04-08 15:37:55 +02:00
parent 21ad84e291
commit 449f08bf98
2 changed files with 3 additions and 3 deletions

View File

@ -188,8 +188,8 @@ void QskRgb::debugColor( QDebug debug, QRgb rgb )
debug << '[';
debug << qRed( rgb ) << "r," << qGreen( rgb ) << "g,"
<< qBlue( rgb ) << 'b';
debug << qRed( rgb ) << "r,"
<< qGreen( rgb ) << "g," << qBlue( rgb ) << 'b';
if ( qAlpha( rgb ) != 255 )
debug << ',' << qAlpha( rgb ) << 'a';

View File

@ -229,7 +229,7 @@ void QskSkin::setupFonts( const QString& family, int weight, bool italic )
for ( int i = TinyFont; i <= HugeFont; i++ )
{
font.setPixelSize( qskDpiScaled( sizes[i-1] ) );
font.setPixelSize( qskDpiScaled( sizes[i - 1] ) );
m_data->fonts[ i ] = font;
}