From a68d6c70bb501b84c42a272d508f272505ac4bb8 Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Thu, 25 Feb 2021 10:56:15 -0500 Subject: [PATCH] 2021-02-25 Fred Gleason * Fixed regressions that caused progress dialogs to appear when starting up applications. Signed-off-by: Fred Gleason --- ChangeLog | 3 +++ lib/rdcart_dialog.cpp | 1 + lib/rdcut_dialog.cpp | 1 + 3 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 8bfe54f3..6d6c3d4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -21204,3 +21204,6 @@ * Fixed a regression in 'RDCae' that broke audio play-out. 2021-02-25 Fred Gleason * Fixed regressions in metering code that caused visual artifacts. +2021-02-25 Fred Gleason + * Fixed regressions that caused progress dialogs to appear when + starting up applications. diff --git a/lib/rdcart_dialog.cpp b/lib/rdcart_dialog.cpp index 50a88d34..9435fadc 100644 --- a/lib/rdcart_dialog.cpp +++ b/lib/rdcart_dialog.cpp @@ -66,6 +66,7 @@ RDCartDialog::RDCartDialog(QString *filter,QString *group,QString *schedcode, cart_progress_dialog= new QProgressDialog(tr("Please Wait..."),tr("Cancel"),0,10,this); cart_progress_dialog->setWindowTitle(" "); + cart_progress_dialog->setValue(10); QLabel *label=new QLabel(tr("Please Wait..."),cart_progress_dialog); label->setAlignment(Qt::AlignCenter); label->setFont(progressFont()); diff --git a/lib/rdcut_dialog.cpp b/lib/rdcut_dialog.cpp index 7889321f..41588fdf 100644 --- a/lib/rdcut_dialog.cpp +++ b/lib/rdcut_dialog.cpp @@ -67,6 +67,7 @@ RDCutDialog::RDCutDialog(QString *filter,QString *group,QString *schedcode, cart_progress_dialog= new QProgressDialog(tr("Please Wait..."),tr("Cancel"),0,10,this); cart_progress_dialog->setWindowTitle(" "); + cart_progress_dialog->setValue(10); QLabel *label=new QLabel(tr("Please Wait..."),cart_progress_dialog); label->setAlignment(Qt::AlignCenter); label->setFont(progressFont());