mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-07-11 13:24:19 -04:00
Use font from UI definition in GLScope and GLSpectrum. Use smaller font (8pt). Time offset in cents instead of mills
This commit is contained in:
@@ -173,8 +173,8 @@ void GLScopeGUI::on_time_valueChanged(int value)
|
||||
void GLScopeGUI::on_timeOfs_valueChanged(int value)
|
||||
{
|
||||
m_timeOffset = value;
|
||||
ui->timeOfsText->setText(tr("%1").arg(value/1000.0, 0, 'f', 3));
|
||||
m_glScope->setTimeOfsProMill(value);
|
||||
ui->timeOfsText->setText(tr("%1").arg(value/100.0, 0, 'f', 2));
|
||||
m_glScope->setTimeOfsProMill(value*10);
|
||||
}
|
||||
|
||||
void GLScopeGUI::on_dataMode_currentIndexChanged(int index)
|
||||
|
||||
Reference in New Issue
Block a user