From f4e7e0035e303e2302406eb3c0f98f28742d3a0b Mon Sep 17 00:00:00 2001 From: ochibani <11yzyv86j@relay.firefox.com> Date: Mon, 16 Dec 2024 23:11:39 +0200 Subject: [PATCH] fix previous commit --- src/area_capture.rs | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/src/area_capture.rs b/src/area_capture.rs index 69c0a4f..8c72363 100644 --- a/src/area_capture.rs +++ b/src/area_capture.rs @@ -92,13 +92,17 @@ impl AreaCapture { } pub fn reset(&mut self) -> Result { - if cfg!(target_os = "windows") { + #[cfg(target_os = "windows")] + { let coordinate = DisplayInfo::all()?; self.x = coordinate[0].x as u16; self.y = coordinate[0].y as u16; self.width = coordinate[0].width as u16; self.height = coordinate[0].height as u16; - } else { + } + + #[cfg(any(target_os = "freebsd", target_os = "linux"))] + { let coordinate = xwininfo_to_coordinate( String::from_utf8(Command::new("xwininfo").arg("-root").output()?.stdout)? )?; @@ -108,8 +112,8 @@ impl AreaCapture { self.height = coordinate.3; } - Ok(*self) - } + Ok(*self) +} } #[cfg(any(target_os = "freebsd", target_os = "linux"))]