mirror of
https://github.com/xlmnxp/blue-recorder.git
synced 2025-04-05 01:04:54 +03:00
fix previous commit
This commit is contained in:
parent
3ddd408276
commit
f4e7e0035e
@ -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"))]
|
||||||
|
Loading…
Reference in New Issue
Block a user