fix previous commit

This commit is contained in:
ochibani 2024-12-16 23:11:39 +02:00
parent 3ddd408276
commit f4e7e0035e
No known key found for this signature in database
GPG Key ID: 2C6B61CE0C704ED4

View File

@ -92,13 +92,17 @@ impl AreaCapture {
} }
pub fn reset(&mut self) -> Result<Self> { pub fn reset(&mut self) -> Result<Self> {
if cfg!(target_os = "windows") { #[cfg(target_os = "windows")]
{
let coordinate = DisplayInfo::all()?; let coordinate = DisplayInfo::all()?;
self.x = coordinate[0].x as u16; self.x = coordinate[0].x as u16;
self.y = coordinate[0].y as u16; self.y = coordinate[0].y as u16;
self.width = coordinate[0].width as u16; self.width = coordinate[0].width as u16;
self.height = coordinate[0].height as u16; self.height = coordinate[0].height as u16;
} else { }
#[cfg(any(target_os = "freebsd", target_os = "linux"))]
{
let coordinate = xwininfo_to_coordinate( let coordinate = xwininfo_to_coordinate(
String::from_utf8(Command::new("xwininfo").arg("-root").output()?.stdout)? String::from_utf8(Command::new("xwininfo").arg("-root").output()?.stdout)?
)?; )?;
@ -109,7 +113,7 @@ impl AreaCapture {
} }
Ok(*self) Ok(*self)
} }
} }
#[cfg(any(target_os = "freebsd", target_os = "linux"))] #[cfg(any(target_os = "freebsd", target_os = "linux"))]