Skip to content

Commit

Permalink
Allow selecting any BaseGroup type for storing imported data when usi…
Browse files Browse the repository at this point in the history
…ng existing group (#373)
  • Loading branch information
jmarquisbq committed Nov 30, 2022
1 parent 3218202 commit 6938095
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -328,7 +328,7 @@ Parameters ImportCSVDataFilter::parameters() const

params.insertLinkableParameter(std::make_unique<BoolParameter>(k_UseExistingGroup_Key, "Use Existing Group", "Store the imported CSV data arrays in an existing group.", false));
params.insert(std::make_unique<DataGroupSelectionParameter>(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<DataGroupCreationParameter>(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
Expand Down

0 comments on commit 6938095

Please sign in to comment.