mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-19 14:43:30 +02:00
2023-01-18 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdservice(8) that could cause dropboxes to be instantiated with invalid segue level values. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
0f5777d498
commit
567fe756b7
@ -23927,3 +23927,6 @@
|
|||||||
2023-01-18 Fred Gleason <fredg@paravelsystems.com>
|
2023-01-18 Fred Gleason <fredg@paravelsystems.com>
|
||||||
* Corrected errors in the WebAPI documentation regarding the
|
* Corrected errors in the WebAPI documentation regarding the
|
||||||
argument type of the 'LINE<n>_TIME_TYPE' field in the 'SaveLog' call.
|
argument type of the 'LINE<n>_TIME_TYPE' field in the 'SaveLog' call.
|
||||||
|
2023-01-18 Fred Gleason <fredg@paravelsystems.com>
|
||||||
|
* Fixed a bug in rdservice(8) that could cause dropboxes to be
|
||||||
|
instantiated with invalid segue level values.
|
||||||
|
@ -279,7 +279,7 @@ bool MainObject::StartDropboxes(QString *err_msg)
|
|||||||
}
|
}
|
||||||
if(q->value(22).toInt()<1) {
|
if(q->value(22).toInt()<1) {
|
||||||
args.push_back(QString::asprintf("--segue-level=%d",
|
args.push_back(QString::asprintf("--segue-level=%d",
|
||||||
q->value(22).toInt()));
|
q->value(22).toInt()/100));
|
||||||
args.push_back(QString::asprintf("--segue-length=%u",
|
args.push_back(QString::asprintf("--segue-length=%u",
|
||||||
q->value(23).toUInt()));
|
q->value(23).toUInt()));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user