mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
SSIHUB: Test if well path is selected before import
This commit is contained in:
parent
b93ff05bda
commit
bcc1482532
@ -558,9 +558,12 @@ QStringList RiuWellImportWizard::absoluteFilePathsToWellPaths() const
|
||||
RimWellPathEntry* wellPathEntry = oilField->wells[wIdx];
|
||||
|
||||
QString wellStatus;
|
||||
if (QFile::exists(oilField->wells[wIdx]->wellPathFilePath))
|
||||
if (wellPathEntry->selected)
|
||||
{
|
||||
filePaths += oilField->wells[wIdx]->wellPathFilePath;
|
||||
if (QFile::exists(oilField->wells[wIdx]->wellPathFilePath))
|
||||
{
|
||||
filePaths += oilField->wells[wIdx]->wellPathFilePath;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user