mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-08 20:20:44 +00:00
Forgot to call QApplication::processEvents to update export progress bar
This commit is contained in:
parent
329b64dcdc
commit
031de957f2
@ -171,6 +171,8 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
|
|
||||||
do {
|
do {
|
||||||
ui->progressBar->setValue(ui->progressBar->value()+1);
|
ui->progressBar->setValue(ui->progressBar->value()+1);
|
||||||
|
QApplication::processEvents();
|
||||||
|
|
||||||
Day *day=PROFILE.GetDay(date,MT_CPAP);
|
Day *day=PROFILE.GetDay(date,MT_CPAP);
|
||||||
if (day) {
|
if (day) {
|
||||||
QString data;
|
QString data;
|
||||||
|
Loading…
Reference in New Issue
Block a user