Add is_active_in_column

Add missing ```

Fix tests
This commit is contained in:
TheZoq2
2024-04-22 22:51:52 +02:00
committed by Ivan Molodetskikh
parent 6d9cfe2882
commit 47a8e75fd5
7 changed files with 52 additions and 3 deletions
+3
View File
@@ -152,6 +152,7 @@ pub trait LayoutElement {
fn output_leave(&self, output: &Output);
fn set_offscreen_element_id(&self, id: Option<Id>);
fn set_activated(&mut self, active: bool);
fn set_active_in_column(&mut self, active: bool);
fn set_bounds(&self, bounds: Size<i32, Logical>);
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
}