1
0
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:
f4exb
2015-07-07 02:50:26 +02:00
parent 8924be1a31
commit 133e072b19
7 changed files with 36 additions and 20 deletions
+2 -2
View File
@@ -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)