Re-add PartialEq removed in #230 (#232)

This commit is contained in:
0HyperCube
2021-07-04 22:27:09 +01:00
committed by Keavon Chambers
parent f808ee5a94
commit b2064c7bfd
8 changed files with 9 additions and 9 deletions

View File

@@ -26,7 +26,7 @@ pub trait LayerData {
fn to_kurbo_path(&mut self, transform: glam::DAffine2, style: style::PathStyle) -> BezPath;
}
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq)]
pub enum LayerDataTypes {
Folder(Folder),
Ellipse(Ellipse),
@@ -77,7 +77,7 @@ impl LayerDataTypes {
}
}
#[derive(Debug, Clone)]
#[derive(Debug, Clone, PartialEq)]
pub struct Layer {
pub visible: bool,
pub name: Option<String>,