Skip to content

Commit

Permalink
Minor bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
hkhauke committed Feb 20, 2024
1 parent 79c2182 commit 736a5e9
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ CjvxSaWrapperElementBase::CjvxSaWrapperElementBase(QWidget* uiRefLoc,
isUnchecked = true;
jvx_initPropertyDescription(thePropDescriptor);
resetBasePropInfos(myBaseProps);
if (verboseLoc)
{
myBaseProps.verbose_out = verboseLoc;
}
assoc_id = uId;
delayedActionOperations = 0;
delayedActionPending = 0;
Expand Down Expand Up @@ -248,7 +252,11 @@ CjvxSaWrapperElementBase::initParameters_getMin(keyValueList* theLst, std::vecto
myBaseProps.group_id_emit = intVal;
}
theLst->getValueForKey("RTUPDATE", &myBaseProps.updateRt, JVX_WW_KEY_VALUE_TYPE_BOOL);
theLst->getValueForKey("VERBOSE", &myBaseProps.verbose_out, JVX_WW_KEY_VALUE_TYPE_BOOL);

if (!myBaseProps.verbose_out)
{
theLst->getValueForKey("VERBOSE", &myBaseProps.verbose_out, JVX_WW_KEY_VALUE_TYPE_BOOL);
}

foundit = false;
myBaseProps.dbgLevel = 0;
Expand Down

0 comments on commit 736a5e9

Please sign in to comment.