From d421e1fbf8f5d10e331de0572def08a8c1bb402e Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Tue, 19 Mar 2024 13:42:04 +0400 Subject: Move PartialEq from LayoutElement to an associated type --- src/layout/monitor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/layout/monitor.rs') diff --git a/src/layout/monitor.rs b/src/layout/monitor.rs index dd5709dd..fbea52cd 100644 --- a/src/layout/monitor.rs +++ b/src/layout/monitor.rs @@ -159,7 +159,7 @@ impl Monitor { pub fn add_window_right_of( &mut self, - right_of: &W, + right_of: &W::Id, window: W, width: ColumnWidth, is_full_width: bool, -- cgit