Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc')
-rw-r--r--source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc b/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc
index 1b8d272250c..ed8d9a87583 100644
--- a/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc
+++ b/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc
@@ -392,11 +392,9 @@ static Span<int64_t> filter_visible_mesh_vertex_rows(const bContext *C,
/* This is safe, because the vector lives in the resource collector. */
return visible_rows.as_span();
}
- else {
- /* No filter is used. */
- const int domain_size = component->attribute_domain_size(ATTR_DOMAIN_POINT);
- return IndexRange(domain_size).as_span();
- }
+ /* No filter is used. */
+ const int domain_size = component->attribute_domain_size(ATTR_DOMAIN_POINT);
+ return IndexRange(domain_size).as_span();
}
std::unique_ptr<SpreadsheetDrawer> spreadsheet_drawer_from_geometry_attributes(const bContext *C,