From 3c1e3c17b48bf448d5a82cbd988c05c2ae1ad47f Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Wed, 8 Jan 2014 00:20:14 +0100 Subject: [PATCH] TimeDisplayWidget: expand all LcdWidgets to 3 digits Most songs have more than 99 bars and in some situations also more than 99 ticks. Thanks to Vesa for pointing out this issue. --- src/gui/widgets/TimeDisplayWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/widgets/TimeDisplayWidget.cpp b/src/gui/widgets/TimeDisplayWidget.cpp index a984b6dae..95df88407 100644 --- a/src/gui/widgets/TimeDisplayWidget.cpp +++ b/src/gui/widgets/TimeDisplayWidget.cpp @@ -36,8 +36,8 @@ TimeDisplayWidget::TimeDisplayWidget() : QWidget(), m_displayMode( MinutesSeconds ), m_spinBoxesLayout( this ), - m_majorLCD( 2, this ), - m_minorLCD( 2, this ), + m_majorLCD( 3, this ), + m_minorLCD( 3, this ), m_milliSecondsLCD( 3, this ) { m_spinBoxesLayout.setSpacing( 0 );