Merge remote-tracking branch 'origin/blender-v4.5-release'

This commit is contained in:
Sybren A. Stüvel
2025-07-14 11:45:56 +02:00
52 changed files with 5204 additions and 1520 deletions

View File

@@ -39,8 +39,12 @@ class AbstractGridViewItem : public AbstractViewItem {
friend class GridViewLayoutBuilder;
protected:
/** Reference to a string that uniquely identifies this item in the view. */
StringRef identifier_{};
/**
* A string that uniquely identifies this item in the view.
*
* Ideally this would just be a StringRef to save memory. This was made a
* std::string to fix #141882 in a relatively safe way. */
std::string identifier_{};
public:
/* virtual */ ~AbstractGridViewItem() override = default;