From 47a8e75fd585e351dd2846a58152a7766403ca11 Mon Sep 17 00:00:00 2001 From: TheZoq2 Date: Mon, 22 Apr 2024 22:51:52 +0200 Subject: Add is_active_in_column Add missing ``` Fix tests --- src/layout/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/layout/mod.rs') diff --git a/src/layout/mod.rs b/src/layout/mod.rs index 75f6cd4c..0cb8e493 100644 --- a/src/layout/mod.rs +++ b/src/layout/mod.rs @@ -152,6 +152,7 @@ pub trait LayoutElement { fn output_leave(&self, output: &Output); fn set_offscreen_element_id(&self, id: Option); fn set_activated(&mut self, active: bool); + fn set_active_in_column(&mut self, active: bool); fn set_bounds(&self, bounds: Size); fn send_pending_configure(&mut self); @@ -2190,6 +2191,8 @@ mod tests { fn send_pending_configure(&mut self) {} + fn set_active_in_column(&mut self, _active: bool) {} + fn is_fullscreen(&self) -> bool { false } -- cgit