From 6938095cffe31f2e4a0cabb14204cc21a688aa80 Mon Sep 17 00:00:00 2001 From: Jessica Marquis <83971431+jmarquisbq@users.noreply.github.com> Date: Wed, 30 Nov 2022 10:34:53 -0500 Subject: [PATCH] Allow selecting any BaseGroup type for storing imported data when using existing group (#373) --- .../ComplexCore/src/ComplexCore/Filters/ImportCSVDataFilter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Plugins/ComplexCore/src/ComplexCore/Filters/ImportCSVDataFilter.cpp b/src/Plugins/ComplexCore/src/ComplexCore/Filters/ImportCSVDataFilter.cpp index 385fba15a7..68edd5f6d8 100644 --- a/src/Plugins/ComplexCore/src/ComplexCore/Filters/ImportCSVDataFilter.cpp +++ b/src/Plugins/ComplexCore/src/ComplexCore/Filters/ImportCSVDataFilter.cpp @@ -328,7 +328,7 @@ Parameters ImportCSVDataFilter::parameters() const params.insertLinkableParameter(std::make_unique(k_UseExistingGroup_Key, "Use Existing Group", "Store the imported CSV data arrays in an existing group.", false)); params.insert(std::make_unique(k_SelectedDataGroup_Key, "Existing Data Group", "Store the imported CSV data arrays in this existing group.", DataPath{}, - DataGroupSelectionParameter::AllowedTypes{BaseGroup::GroupType::DataGroup})); + BaseGroup::GetAllGroupTypes())); params.insert(std::make_unique(k_CreatedDataGroup_Key, "New Data Group", "Store the imported CSV data arrays in a newly created group.", DataPath{})); // Associate the Linkable Parameter(s) to the children parameters that they control