You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: node-graph/graph-craft/src/document/value.rs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ macro_rules! tagged_value {
64
64
/// Stored compactly as a `GradientStops`, materializes as a single-row `List<GradientStops>` at runtime via `to_dynany`/`to_any`. Aliases recover legacy on-disk shapes.
65
65
/// (Old documents that stored a full `Gradient` struct under this same `"Gradient"` tag are routed to `FillGradient` by `deserialize_tagged_value_with_legacy_migration`.)
66
66
#[serde(deserialize_with = "graphic_types::vector_types::gradient::migrate_to_gradient_stops")]// TODO: Eventually remove this migration document upgrade code
67
-
#[serde(alias = "GradientTable", alias = "GradientPositions")]
67
+
#[serde(alias = "GradientTable", alias = "GradientPositions", alias = "GradientStops")]
68
68
Gradient(GradientStops),
69
69
/// Stored compactly as a `Vec<BrushStroke>`, materializes as `List<BrushStroke>` at runtime via `to_dynany`/`to_any`. Aliases recover legacy on-disk shapes.
70
70
#[serde(deserialize_with = "brush_nodes::migrations::migrate_to_brush_strokes")]// TODO: Eventually remove this migration document upgrade code
0 commit comments