mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Pop up file dialog if no SD card data detected
This commit is contained in:
parent
4790025697
commit
558fb2f789
@ -377,7 +377,8 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
}
|
}
|
||||||
|
|
||||||
int res = QMessageBox::question(this, tr("Datacard Located"),
|
int res = QMessageBox::question(this, tr("Datacard Located"),
|
||||||
QString(tr("A %1 datacard structure was detected at\n%2\n\nWould you like to import from this location?")).arg(datacard_loader->ClassName()).arg(datacard_path), tr("Yes"),
|
QString(tr("A %1 datacard structure was detected at\n%2\n\nWould you like to import from this location?")).
|
||||||
|
arg(datacard_loader->ClassName()).arg(datacard_path), tr("Yes"),
|
||||||
tr("Select another folder"), tr("Cancel"), 0, 2);
|
tr("Select another folder"), tr("Cancel"), 0, 2);
|
||||||
if (res == 1) {
|
if (res == 1) {
|
||||||
asknew = true;
|
asknew = true;
|
||||||
@ -387,6 +388,8 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
|
|
||||||
if (res == 2) { return; }
|
if (res == 2) { return; }
|
||||||
|
|
||||||
|
} else {
|
||||||
|
asknew = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (asknew) {
|
if (asknew) {
|
||||||
|
Loading…
Reference in New Issue
Block a user