mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +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,12 +40,25 @@ FPIconLoader::~FPIconLoader()
|
|||||||
|
|
||||||
bool FPIconLoader::Detect(const QString & givenpath)
|
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()) {
|
if (!dir.exists()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// F&P Icon have a folder called FPHCARE in the root directory
|
// F&P Icon have a folder called FPHCARE in the root directory
|
||||||
if (!dir.exists(FPHCARE)) {
|
if (!dir.exists(FPHCARE)) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -920,10 +920,16 @@ QList<ImportPath> MainWindow::detectCPAPCards()
|
|||||||
|
|
||||||
void MainWindow::on_action_Import_Data_triggered()
|
void MainWindow::on_action_Import_Data_triggered()
|
||||||
{
|
{
|
||||||
|
static bool in_import = false;
|
||||||
if (m_inRecalculation) {
|
if (m_inRecalculation) {
|
||||||
Notify(tr("Access to Import has been blocked while recalculations are in progress."),STR_MessageBox_Busy);
|
Notify(tr("Access to Import has been blocked while recalculations are in progress."),STR_MessageBox_Busy);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (in_import) {
|
||||||
|
Notify(tr("Import is already running in the background."),STR_MessageBox_Busy);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
in_import=true;
|
||||||
|
|
||||||
QList<ImportPath> datacards = detectCPAPCards();
|
QList<ImportPath> datacards = detectCPAPCards();
|
||||||
|
|
||||||
@ -971,6 +977,7 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
if (res == QMessageBox::Cancel) {
|
if (res == QMessageBox::Cancel) {
|
||||||
// Give the communal progress bar back
|
// Give the communal progress bar back
|
||||||
ui->statusbar->insertWidget(1,qprogress,1);
|
ui->statusbar->insertWidget(1,qprogress,1);
|
||||||
|
in_import=false;
|
||||||
return;
|
return;
|
||||||
} else if (res == QMessageBox::No) {
|
} else if (res == QMessageBox::No) {
|
||||||
waitmsg->setText(tr("Please wait, launching file dialog..."));
|
waitmsg->setText(tr("Please wait, launching file dialog..."));
|
||||||
@ -1039,6 +1046,7 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
if (w.exec() != QDialog::Accepted) {
|
if (w.exec() != QDialog::Accepted) {
|
||||||
popup.hide();
|
popup.hide();
|
||||||
ui->statusbar->insertWidget(1,qprogress,1);
|
ui->statusbar->insertWidget(1,qprogress,1);
|
||||||
|
in_import=false;
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -1099,6 +1107,8 @@ void MainWindow::on_action_Import_Data_triggered()
|
|||||||
finishCPAPImport();
|
finishCPAPImport();
|
||||||
PopulatePurgeMenu();
|
PopulatePurgeMenu();
|
||||||
}
|
}
|
||||||
|
in_import=false;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QMenu *MainWindow::CreateMenu(QString title)
|
QMenu *MainWindow::CreateMenu(QString title)
|
||||||
|
Loading…
Reference in New Issue
Block a user