Skip to content

Commit 6938095

Browse files
authored
Allow selecting any BaseGroup type for storing imported data when using existing group (#373)
1 parent 3218202 commit 6938095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Plugins/ComplexCore/src/ComplexCore/Filters/ImportCSVDataFilter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Parameters ImportCSVDataFilter::parameters() const
328328

329329
params.insertLinkableParameter(std::make_unique<BoolParameter>(k_UseExistingGroup_Key, "Use Existing Group", "Store the imported CSV data arrays in an existing group.", false));
330330
params.insert(std::make_unique<DataGroupSelectionParameter>(k_SelectedDataGroup_Key, "Existing Data Group", "Store the imported CSV data arrays in this existing group.", DataPath{},
331-
DataGroupSelectionParameter::AllowedTypes{BaseGroup::GroupType::DataGroup}));
331+
BaseGroup::GetAllGroupTypes()));
332332
params.insert(std::make_unique<DataGroupCreationParameter>(k_CreatedDataGroup_Key, "New Data Group", "Store the imported CSV data arrays in a newly created group.", DataPath{}));
333333

334334
// Associate the Linkable Parameter(s) to the children parameters that they control

0 commit comments

Comments
 (0)