diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-03-19 13:52:08 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-03-19 18:29:13 +0400 |
| commit | bbb4caeb8ccba52949799e7a229ee710ffa23564 (patch) | |
| tree | 89ec3eccb472640f0dcd413bcc497e5e69ff1492 /niri-visual-tests/src/test_window.rs | |
| parent | d421e1fbf8f5d10e331de0572def08a8c1bb402e (diff) | |
| download | niri-bbb4caeb8ccba52949799e7a229ee710ffa23564.tar.gz niri-bbb4caeb8ccba52949799e7a229ee710ffa23564.tar.bz2 niri-bbb4caeb8ccba52949799e7a229ee710ffa23564.zip | |
Remove remaining Window-specific functions
Diffstat (limited to 'niri-visual-tests/src/test_window.rs')
| -rw-r--r-- | niri-visual-tests/src/test_window.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/niri-visual-tests/src/test_window.rs b/niri-visual-tests/src/test_window.rs index a5b10b20..df7f33c5 100644 --- a/niri-visual-tests/src/test_window.rs +++ b/niri-visual-tests/src/test_window.rs @@ -202,6 +202,12 @@ impl LayoutElement for TestWindow { fn set_offscreen_element_id(&self, _id: Option<Id>) {} + fn set_activated(&self, _active: bool) {} + + fn set_bounds(&self, _bounds: Size<i32, Logical>) {} + + fn send_pending_configure(&self) {} + fn is_fullscreen(&self) -> bool { false } @@ -209,4 +215,6 @@ impl LayoutElement for TestWindow { fn is_pending_fullscreen(&self) -> bool { self.inner.borrow().pending_fullscreen } + + fn refresh(&self) {} } |
