Skip to content

Commit

Permalink
Make EdgeProps public (#132)
Browse files Browse the repository at this point in the history
`edge_graphs::elements::EdgeProps` is inaccessible, so it's not possible
to implement your own edge drawing. This PR fixes this.
  • Loading branch information
oisyn authored Nov 22, 2023
1 parent afeffb0 commit 3fc8fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ mod settings;
mod transform;

pub use self::draw::{DefaultEdgeShape, DefaultNodeShape, DisplayEdge, DisplayNode, DrawContext};
pub use self::elements::{Edge, Node, NodeProps};
pub use self::elements::{Edge, EdgeProps, Node, NodeProps};
pub use self::graph::Graph;
pub use self::graph_view::GraphView;
pub use self::metadata::Metadata;
Expand Down

0 comments on commit 3fc8fcb

Please sign in to comment.