mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2026-01-12 07:35:55 +01:00
2021-08-06 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdadmin(1) that caused the 'Norm. Level' and 'Autotrim Level' columns to display incorrect values in the 'Dropbox Configuration' dialog. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -22186,3 +22186,7 @@
|
|||||||
2021-08-04 Fred Gleason <fredg@paravelsystems.com>
|
2021-08-04 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Modified rdairplay(1) to use the standard date/time formatting
|
* Modified rdairplay(1) to use the standard date/time formatting
|
||||||
strings.
|
strings.
|
||||||
|
2021-08-06 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a regression in rdadmin(1) that caused the 'Norm. Level'
|
||||||
|
and 'Autotrim Level' columns to display incorrect values in the
|
||||||
|
'Dropbox Configuration' dialog.
|
||||||
|
|||||||
@@ -305,7 +305,7 @@ void RDDropboxListModel::updateRow(int row,RDSqlQuery *q)
|
|||||||
texts.push_back(tr("[off]"));
|
texts.push_back(tr("[off]"));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
texts.push_back(QString().sprintf("%d dBFS",q->value(4).toInt()));
|
texts.push_back(QString().sprintf("%d dBFS",q->value(4).toInt()/100));
|
||||||
}
|
}
|
||||||
|
|
||||||
// Autotrim Level
|
// Autotrim Level
|
||||||
@@ -313,7 +313,7 @@ void RDDropboxListModel::updateRow(int row,RDSqlQuery *q)
|
|||||||
texts.push_back(tr("[off]"));
|
texts.push_back(tr("[off]"));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
texts.push_back(QString().sprintf("%d dBFS",q->value(5).toInt()));
|
texts.push_back(QString().sprintf("%d dBFS",q->value(5).toInt()/100));
|
||||||
}
|
}
|
||||||
|
|
||||||
// To Cart
|
// To Cart
|
||||||
|
|||||||
Reference in New Issue
Block a user