Skip to content
Snippets Groups Projects
Commit 2da6a34c authored by Julien Malik's avatar Julien Malik
Browse files

BUG: fix #686 - don't erase the parameter as soon as it is not readable

parent 2717af2a
Branches
Tags
No related merge requests found
......@@ -144,7 +144,6 @@ QtWidgetInputImageListParameter::UpdateImageList()
std::ostringstream oss;
oss << "The given file " << m_FileSelectionList[j]->GetFilename() << " is not valid.";
this->GetModel()->SendLogWARNING(oss.str());
m_FileSelectionList[j]->ClearFilename();
}
}
......
......@@ -145,7 +145,6 @@ QtWidgetInputVectorDataListParameter::UpdateVectorDataList()
std::ostringstream oss;
oss << "The given file " << m_FileSelectionList[j]->GetFilename() << " is not valid.";
this->GetModel()->SendLogWARNING(oss.str());
m_FileSelectionList[j]->ClearFilename();
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment