Skip to content
Snippets Groups Projects
Commit df774292 authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Adding an additionnal check ot see if output parameter is enabled before...

BUG: Adding an additionnal check ot see if output parameter is enabled before displaying it (fixing bug #549)
parent e69a38da
No related branches found
No related tags found
No related merge requests found
......@@ -1200,7 +1200,7 @@ Application::GetOutputParametersSumUp()
if ( type != ParameterType_Group )
{
if ( param->GetRole() == Role_Output )
if ( param->GetRole() == Role_Output && IsParameterEnabled(*it) )
{
std::pair<std::string, std::string> keyVal;
keyVal.first = (*it);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment