mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-05-28 06:32:32 +02:00
2022-05-23 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in the 'Generate Log' dialog in rdlogmanager(1) that caused the progress bar dialog to fail to be hidden after generation of a log. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
98e040f638
commit
8425e07675
@ -23148,3 +23148,7 @@
|
||||
2022-05-23 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Tweaked the layout of the meter strip in rdairplay(1) so as to
|
||||
keep 4 character long labels from running together.
|
||||
2022-05-23 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Fixed a regression in the 'Generate Log' dialog in rdlogmanager(1)
|
||||
that caused the progress bar dialog to fail to be hidden after
|
||||
generation of a log.
|
||||
|
@ -58,7 +58,7 @@ GenerateLog::GenerateLog(QWidget *parent,int cmd_switch,QString *cmd_service,
|
||||
new QProgressDialog(tr("Generating Log..."),tr("Cancel"),0,24,this);
|
||||
gen_progress_dialog->setWindowTitle("Progress");
|
||||
gen_progress_dialog->setCancelButton(NULL);
|
||||
gen_progress_dialog->setValue(24);
|
||||
gen_progress_dialog->setValue(gen_progress_dialog->maximum());
|
||||
|
||||
//
|
||||
// Service Name
|
||||
@ -323,6 +323,8 @@ void GenerateLog::createData()
|
||||
return;
|
||||
}
|
||||
log->updateTracks();
|
||||
gen_progress_dialog->
|
||||
setValue(gen_progress_dialog->setValue(gen_progress_dialog->maximum());
|
||||
SendNotification(RDNotification::AddAction,log->name());
|
||||
delete log;
|
||||
delete svc;
|
||||
|
Loading…
x
Reference in New Issue
Block a user