wlr-screencopy, though it doesnt work

This commit is contained in:
galister
2024-02-20 22:33:50 +01:00
parent e7b415ae4e
commit e2ca33ca76
4 changed files with 34 additions and 11 deletions

View File

@@ -63,7 +63,7 @@ fn auto_run(running: Arc<AtomicBool>) {
Ok(()) => return,
Err(BackendError::NotSupported) => (),
Err(e) => {
log::error!("{}", e);
log::error!("{}", e.to_string());
return;
}
};
@@ -76,7 +76,7 @@ fn auto_run(running: Arc<AtomicBool>) {
Ok(()) => return,
Err(BackendError::NotSupported) => (),
Err(e) => {
log::error!("{}", e);
log::error!("{}", e.to_string());
return;
}
};