avoid font sizes <= 0
This commit is contained in:
parent
2df8d81174
commit
440ad62631
@ -156,11 +156,15 @@ void SkinnyShortcut::changeFonts( int increment )
|
|||||||
|
|
||||||
if ( font.pixelSize() > 0 )
|
if ( font.pixelSize() > 0 )
|
||||||
{
|
{
|
||||||
font.setPixelSize( font.pixelSize() + increment );
|
const auto newSize = font.pixelSize() + increment;
|
||||||
|
if ( newSize > 0 )
|
||||||
|
font.setPixelSize( newSize );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
font.setPointSize( font.pointSize() + increment );
|
const auto newSize = font.pointSize() + increment;
|
||||||
|
if ( newSize > 0 )
|
||||||
|
font.setPointSize( font.pointSize() + increment );
|
||||||
}
|
}
|
||||||
|
|
||||||
skin->setFont( role, font );
|
skin->setFont( role, font );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user