Add filter for Paths to dynamic profiles (#6284)
Work by @nicolas-t * Path filter in dynamic profile panel * Pass filename as a function argument * Removed unused include * Clearer translation
This commit is contained in:
@@ -743,7 +743,7 @@ int processLineParams ( int argc, char **argv )
|
||||
if (options.defProfRaw == DEFPROFILE_DYNAMIC) {
|
||||
rawParams->deleteInstance();
|
||||
delete rawParams;
|
||||
rawParams = ProfileStore::getInstance()->loadDynamicProfile (ii->getMetaData());
|
||||
rawParams = ProfileStore::getInstance()->loadDynamicProfile (ii->getMetaData(), inputFile);
|
||||
}
|
||||
|
||||
std::cout << " Merging default raw processing profile." << std::endl;
|
||||
@@ -752,7 +752,7 @@ int processLineParams ( int argc, char **argv )
|
||||
if (options.defProfImg == DEFPROFILE_DYNAMIC) {
|
||||
imgParams->deleteInstance();
|
||||
delete imgParams;
|
||||
imgParams = ProfileStore::getInstance()->loadDynamicProfile (ii->getMetaData());
|
||||
imgParams = ProfileStore::getInstance()->loadDynamicProfile (ii->getMetaData(), inputFile);
|
||||
}
|
||||
|
||||
std::cout << " Merging default non-raw processing profile." << std::endl;
|
||||
|
Reference in New Issue
Block a user