LcdWidget: decreased spacing between text label and LCD label

This commit is contained in:
Tobias Doerffel
2014-01-06 21:18:20 +01:00
parent a73e8636eb
commit 90024c3699

View File

@@ -234,7 +234,7 @@ void LcdWidget::updateSize()
setFixedSize( qMax<int>(
m_cellWidth * m_numDigits + 2*(margin+m_marginWidth),
QFontMetrics( pointSize<6>( font() ) ).width( m_label ) ),
m_cellHeight + (2*margin) + 10 );
m_cellHeight + (2*margin) + 8 );
}
update();