Skip to content

Commit

Permalink
Fix SvgSimpleNode not exposed in API
Browse files Browse the repository at this point in the history
  • Loading branch information
fschutt committed Sep 21, 2023
1 parent d185e6e commit 35ac1b9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions azul-core/src/svg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -353,13 +353,13 @@ pub enum SvgSimpleNode {
impl_vec!(
SvgSimpleNode,
SvgSimpleNodeVec,
SvgSimpleNodeDestructor
SvgSimpleNodeVecDestructor
);
impl_vec_debug!(SvgSimpleNode, SvgSimpleNodeVec);
impl_vec_clone!(
SvgSimpleNode,
SvgSimpleNodeVec,
SvgSimpleNodeDestructor
SvgSimpleNodeVecDestructor
);
impl_vec_partialeq!(SvgSimpleNode, SvgSimpleNodeVec);
impl_vec_partialord!(SvgSimpleNode, SvgSimpleNodeVec);
Expand Down
5 changes: 3 additions & 2 deletions azulc/src/svg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use core::fmt;
use azul_core::{
app_resources::{RawImage, RawImageFormat},
gl::{Texture, GlContextPtr},
window::PhysicalSizeU32, svg::SvgSimpleNode,
window::PhysicalSizeU32,
};
use azul_css::{
OptionI16, OptionU16, U8Vec, OptionAzString,
Expand Down Expand Up @@ -38,7 +38,8 @@ pub use azul_core::svg::{
ShapeRendering, ImageRendering, TextRendering, FontDatabase,
SvgFitTo, SvgParseError, Indent, SvgVector, SvgRenderTransform,

SvgPoint, SvgCubicCurve, TessellatedSvgNodeVec,
SvgPoint, SvgCubicCurve, TessellatedSvgNodeVec,
SvgSimpleNode, SvgSimpleNodeVec, SvgSimpleNodeVecDestructor,
SvgMultiPolygonVec, SvgPathVec,
SvgPathElementVec, SvgVertexVec,
TessellatedSvgNodeVecDestructor,
Expand Down

0 comments on commit 35ac1b9

Please sign in to comment.