Remove Clone bound from LayoutElement

It is no longer necessary.
This commit is contained in:
Ivan Molodetskikh
2023-12-24 18:02:13 +04:00
parent 99e75b95b7
commit 324c1efd04
+1 -1
View File
@@ -54,7 +54,7 @@ mod focus_ring;
mod monitor;
mod workspace;
pub trait LayoutElement: SpaceElement + PartialEq + Clone {
pub trait LayoutElement: SpaceElement + PartialEq {
fn request_size(&self, size: Size<i32, Logical>);
fn request_fullscreen(&self, size: Size<i32, Logical>);
fn min_size(&self) -> Size<i32, Logical>;