mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-10-30 17:23:53 +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:
@@ -305,7 +305,7 @@ void RDDropboxListModel::updateRow(int row,RDSqlQuery *q)
|
||||
texts.push_back(tr("[off]"));
|
||||
}
|
||||
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
|
||||
@@ -313,7 +313,7 @@ void RDDropboxListModel::updateRow(int row,RDSqlQuery *q)
|
||||
texts.push_back(tr("[off]"));
|
||||
}
|
||||
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
|
||||
|
||||
Reference in New Issue
Block a user