Skip to content
Snippets Groups Projects
Commit 34dc53be authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH: set active only the parameters that are not in AutomaticValue mode

parent 1c1dd53d
Branches
Tags
No related merge requests found
......@@ -58,7 +58,12 @@ public:
{
// TODO check minimum/maximum
m_Value = value;
//SetActive(true);
// Set Active only if the parameter is not automatically set
if (!GetAutomaticValue())
{
SetActive(true);
}
}
void SetValue( const std::string & valueStr )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment