2021-02-25 Fred Gleason <fredg@paravelsystems.com>

* Fixed regressions that caused progress dialogs to appear when
	starting up applications.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2021-02-25 10:56:15 -05:00
parent 7ed04f1392
commit a68d6c70bb
3 changed files with 5 additions and 0 deletions

View File

@ -21204,3 +21204,6 @@
* Fixed a regression in 'RDCae' that broke audio play-out. * Fixed a regression in 'RDCae' that broke audio play-out.
2021-02-25 Fred Gleason <fredg@paravelsystems.com> 2021-02-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed regressions in metering code that caused visual artifacts. * Fixed regressions in metering code that caused visual artifacts.
2021-02-25 Fred Gleason <fredg@paravelsystems.com>
* Fixed regressions that caused progress dialogs to appear when
starting up applications.

View File

@ -66,6 +66,7 @@ RDCartDialog::RDCartDialog(QString *filter,QString *group,QString *schedcode,
cart_progress_dialog= cart_progress_dialog=
new QProgressDialog(tr("Please Wait..."),tr("Cancel"),0,10,this); new QProgressDialog(tr("Please Wait..."),tr("Cancel"),0,10,this);
cart_progress_dialog->setWindowTitle(" "); cart_progress_dialog->setWindowTitle(" ");
cart_progress_dialog->setValue(10);
QLabel *label=new QLabel(tr("Please Wait..."),cart_progress_dialog); QLabel *label=new QLabel(tr("Please Wait..."),cart_progress_dialog);
label->setAlignment(Qt::AlignCenter); label->setAlignment(Qt::AlignCenter);
label->setFont(progressFont()); label->setFont(progressFont());

View File

@ -67,6 +67,7 @@ RDCutDialog::RDCutDialog(QString *filter,QString *group,QString *schedcode,
cart_progress_dialog= cart_progress_dialog=
new QProgressDialog(tr("Please Wait..."),tr("Cancel"),0,10,this); new QProgressDialog(tr("Please Wait..."),tr("Cancel"),0,10,this);
cart_progress_dialog->setWindowTitle(" "); cart_progress_dialog->setWindowTitle(" ");
cart_progress_dialog->setValue(10);
QLabel *label=new QLabel(tr("Please Wait..."),cart_progress_dialog); QLabel *label=new QLabel(tr("Please Wait..."),cart_progress_dialog);
label->setAlignment(Qt::AlignCenter); label->setAlignment(Qt::AlignCenter);
label->setFont(progressFont()); label->setFont(progressFont());