Commit b7138f27 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Qt4 - setToolTip on the rateLabel.

parent b38c6ef4
...@@ -912,6 +912,7 @@ void MainInterface::setRate( int rate ) ...@@ -912,6 +912,7 @@ void MainInterface::setRate( int rate )
str.setNum( ( 1000 / (double)rate ), 'f', 2 ); str.setNum( ( 1000 / (double)rate ), 'f', 2 );
str.append( "x" ); str.append( "x" );
speedLabel->setText( str ); speedLabel->setText( str );
speedLabel->setToolTip( str );
speedControl->updateControls( rate ); speedControl->updateControls( rate );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment