mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
A couple of import hang fixes, (FPIcon wrong path selected, and double import)
This commit is contained in:
parent
20f8ceed71
commit
cd7806be59
@ -40,11 +40,24 @@ FPIconLoader::~FPIconLoader()
|
||||
|
||||
bool FPIconLoader::Detect(const QString & givenpath)
|
||||
{
|
||||
QDir dir(givenpath);
|
||||
QString path = givenpath;
|
||||
|
||||
path = path.replace("\\", "/");
|
||||
|
||||
if (path.endsWith("/")) {
|
||||
path.chop(1);
|
||||
}
|
||||
|
||||
if (path.endsWith("/" + FPHCARE)) {
|
||||
path = path.section("/",0,-2);
|
||||
}
|
||||
|
||||
QDir dir(path);
|
||||
|
||||
if (!dir.exists()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
// F&P Icon have a folder called FPHCARE in the root directory
|
||||
if (!dir.exists(FPHCARE)) {
|
||||
|
@ -920,10 +920,16 @@ QList<ImportPath> MainWindow::detectCPAPCards()
|
||||
|
||||
void MainWindow::on_action_Import_Data_triggered()
|
||||
{
|
||||
static bool in_import = false;
|
||||
if (m_inRecalculation) {
|
||||
Notify(tr("Access to Import has been blocked while recalculations are in progress."),STR_MessageBox_Busy);
|
||||
return;
|
||||
}
|
||||
if (in_import) {
|
||||
Notify(tr("Import is already running in the background."),STR_MessageBox_Busy);
|
||||
return;
|
||||
}
|
||||
in_import=true;
|
||||
|
||||
QList<ImportPath> datacards = detectCPAPCards();
|
||||
|
||||
@ -971,6 +977,7 @@ void MainWindow::on_action_Import_Data_triggered()
|
||||
if (res == QMessageBox::Cancel) {
|
||||
// Give the communal progress bar back
|
||||
ui->statusbar->insertWidget(1,qprogress,1);
|
||||
in_import=false;
|
||||
return;
|
||||
} else if (res == QMessageBox::No) {
|
||||
waitmsg->setText(tr("Please wait, launching file dialog..."));
|
||||
@ -1039,6 +1046,7 @@ void MainWindow::on_action_Import_Data_triggered()
|
||||
if (w.exec() != QDialog::Accepted) {
|
||||
popup.hide();
|
||||
ui->statusbar->insertWidget(1,qprogress,1);
|
||||
in_import=false;
|
||||
|
||||
return;
|
||||
}
|
||||
@ -1099,6 +1107,8 @@ void MainWindow::on_action_Import_Data_triggered()
|
||||
finishCPAPImport();
|
||||
PopulatePurgeMenu();
|
||||
}
|
||||
in_import=false;
|
||||
|
||||
}
|
||||
|
||||
QMenu *MainWindow::CreateMenu(QString title)
|
||||
|
Loading…
Reference in New Issue
Block a user