From 4114ff04338e11d477117d9b293915779315c119 Mon Sep 17 00:00:00 2001
From: Julien Michel <julien.michel@orfeo-toolbox.org>
Date: Tue, 21 Feb 2012 13:58:46 +0100
Subject: [PATCH] ENH: Non-mandatory parameters have to be enabled when set

---
 Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
index ae49470426..644ba30292 100644
--- a/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
+++ b/Code/Wrappers/CommandLine/otbWrapperCommandLineLauncher.cxx
@@ -363,6 +363,9 @@ CommandLineLauncher::ParamResultType CommandLineLauncher::LoadParameters()
 
     const bool paramExists(m_Parser->IsAttributExists(std::string("-").append(paramKey), m_Expression));
 
+    // Ensure that the parameter is enabled
+    m_Application->EnableParameter(paramKey);
+
     // if param is a Group, dont do anything, ParamGroup dont have values
     if (type != ParameterType_Group)
       {
-- 
GitLab