Skip to content

Commit 8dfc21c

Browse files
committed
Fix of param change not applied in Builder
1 parent a9688f0 commit 8dfc21c

3 files changed

Lines changed: 6 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
(from 6 to 17 digits)
3838
* Fixed fragment unauthenticated import
3939
* Fixed examples installation operations (especially for observers)
40+
* Fixed param change in ware param list not detected in Builder
4041

4142

4243
## 2.2.0

CMake.in.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ SET(OFBUILD_CUSTOM_CMAKE_VERSION "${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.
2323
SET(OPENFLUID_VERSION_MAJOR 2)
2424
SET(OPENFLUID_VERSION_MINOR 2)
2525
SET(OPENFLUID_VERSION_PATCH 1)
26-
SET(OPENFLUID_VERSION_STATUS "beta4") # example: SET(OPENFLUID_VERSION_STATUS "rc1")
26+
SET(OPENFLUID_VERSION_STATUS "beta5") # example: SET(OPENFLUID_VERSION_STATUS "rc1")
2727

2828
SET(OPENFLUID_VERSION_FULL "${OPENFLUID_VERSION_MAJOR}.${OPENFLUID_VERSION_MINOR}.${OPENFLUID_VERSION_PATCH}")
2929

src/apps/openfluid-builder/common/WareWidget.cpp

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -473,13 +473,10 @@ void WareWidget::addParam(const std::string& ParamName, const std::string& Param
473473
connect(ParamWidget,SIGNAL(removeClicked(const QString&)),
474474
this, SLOT(removeParameterFromList(const QString&)));
475475
}
476-
else
477-
{
478-
connect(ParamWidget,SIGNAL(valueChanged(const QString&, const QString&)),
479-
this, SLOT(updateParameterValue(const QString&,const QString&)));
480-
ParamsInSign << QString::fromStdString(ParamName);
481-
}
482-
476+
connect(ParamWidget,SIGNAL(valueChanged(const QString&, const QString&)),
477+
this, SLOT(updateParameterValue(const QString&,const QString&)));
478+
ParamsInSign << QString::fromStdString(ParamName);
479+
483480
((QBoxLayout*)(ui->ParamsListZoneWidget->layout()))->addWidget(ParamWidget);
484481
}
485482

0 commit comments

Comments
 (0)