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:
authorJacques Lucke <jacques@blender.org>2021-03-02 13:55:59 +0300
committerJacques Lucke <jacques@blender.org>2021-03-02 13:55:59 +0300
commitad8238cb51191c2d1a0d1843f295091c807a4121 (patch)
treeb1f08d4ffc2d2630a81c6de1851920a7f113eabd /source/blender/editors
parent9c58324b787333098578a552d38d9500b52d4030 (diff)
improve comment
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc b/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc
index 2bf9d08afa9..e5a8e7662bd 100644
--- a/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc
+++ b/source/blender/editors/space_spreadsheet/spreadsheet_from_geometry.cc
@@ -68,8 +68,8 @@ class GeometryAttributeSpreadsheetDrawer : public SpreadsheetDrawer {
std::unique_ptr<ResourceCollector> resources_;
/* Information about how to draw the individual columns. */
Vector<std::unique_ptr<AttributeColumn>> columns_;
- /* This is used to filter the selected rows. It might point to a vector living in the resources
- * collector above. */
+ /* This is used to filter the selected rows. The referenced data lives at least as long as the
+ * resource collector above. */
Span<int64_t> visible_rows_;
public: