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
* Add GradientSpreadMethod enum (Pad, Repeat, Reflect) to vector-types
* Add radio buttons to gradient tool and fill properties panel
* Convert spread method when importing SVGs via usvg
* Sync backup gradient input when changing spread method
* Table<GradientStops> rendering is not yet updated for spread method
Copy file name to clipboardExpand all lines: editor/src/messages/portfolio/document/graph_operation/graph_operation_message_handler.rs
+27-5Lines changed: 27 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ use graphene_std::renderer::Quad;
15
15
use graphene_std::renderer::convert_usvg_path::convert_usvg_path;
16
16
use graphene_std::table::Table;
17
17
use graphene_std::text::{Font,TypesettingConfig};
18
-
use graphene_std::vector::style::{Fill,Gradient,GradientStop,GradientStops,GradientType,PaintOrder,Stroke,StrokeAlign,StrokeCap,StrokeJoin};
18
+
use graphene_std::vector::style::{Fill,Gradient,GradientSpreadMethod,GradientStop,GradientStops,GradientType,PaintOrder,Stroke,StrokeAlign,StrokeCap,StrokeJoin};
Copy file name to clipboardExpand all lines: editor/src/messages/portfolio/document/node_graph/node_properties.rs
+49-1Lines changed: 49 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ use graphene_std::transform::{Footprint, ReferencePoint, ScaleType, Transform};
27
27
use graphene_std::vector::QRCodeErrorCorrectionLevel;
28
28
use graphene_std::vector::misc::BooleanOperation;
29
29
use graphene_std::vector::misc::{ArcType,CentroidType,ExtrudeJoiningAlgorithm,GridType,InterpolationDistribution,MergeByDistanceAlgorithm,PointSpacingType,RowsOrColumns,SpiralType};
30
-
use graphene_std::vector::style::{Fill,FillChoice,FillType,GradientStops,GradientType,PaintOrder,StrokeAlign,StrokeCap,StrokeJoin};
30
+
use graphene_std::vector::style::{Fill,FillChoice,FillType,GradientSpreadMethod,GradientStops,GradientType,PaintOrder,StrokeAlign,StrokeCap,StrokeJoin};
0 commit comments