Remove partialeq for layers (#230)

This commit is contained in:
0HyperCube
2021-06-29 21:06:37 +01:00
committed by GitHub
parent 3ba570fa68
commit 69a446091f
10 changed files with 12 additions and 13 deletions
+2 -2
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, PartialEq)]
#[derive(Debug, Clone)]
pub enum LayerDataTypes {
Folder(Folder),
Ellipse(Ellipse),
@@ -77,7 +77,7 @@ impl LayerDataTypes {
}
}
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug, Clone)]
pub struct Layer {
pub visible: bool,
pub name: Option<String>,