2
0
forked from Ivasoft/DSView

Optimize file loading

This commit is contained in:
dreamsourcelabTAI
2023-06-14 15:18:46 +08:00
parent 909268a2a4
commit 3c49de125c
2 changed files with 107 additions and 77 deletions

View File

@@ -412,9 +412,10 @@ namespace pv
}
dialogs::DSMessageBox *box = NULL;
MsgBox::Show("", title, details, this, &box, false);
connect(_session->device_event_object(), SIGNAL(device_updated()), box, SLOT(accept()));
box->exec();
MsgBox::Show("", title, details, this, &box, true);
// auto evo = _session->device_event_object();
//connect(evo, SIGNAL(device_updated()), box, SLOT(accept()));
// box->exec();
_session->clear_error();
}