Browse Source

Fix category change signalling.

QGC4.4
Don Gagne 7 years ago
parent
commit
3c4bf979d0
  1. 5
      src/QmlControls/ParameterEditorController.cc

5
src/QmlControls/ParameterEditorController.cc

@ -47,8 +47,9 @@ ParameterEditorController::ParameterEditorController(void) @@ -47,8 +47,9 @@ ParameterEditorController::ParameterEditorController(void)
}
_updateParameters();
connect(this, &ParameterEditorController::searchTextChanged, this, &ParameterEditorController::_updateParameters);
connect(this, &ParameterEditorController::currentGroupChanged, this, &ParameterEditorController::_updateParameters);
connect(this, &ParameterEditorController::searchTextChanged, this, &ParameterEditorController::_updateParameters);
connect(this, &ParameterEditorController::currentCategoryChanged, this, &ParameterEditorController::_updateParameters);
connect(this, &ParameterEditorController::currentGroupChanged, this, &ParameterEditorController::_updateParameters);
}
ParameterEditorController::~ParameterEditorController()

Loading…
Cancel
Save