Updated dependency/instal info, added user guides. Updated flatscreen keybind #41

Closed
cyberneticmelon wants to merge 49 commits from documentation into main
Showing only changes of commit 77b22789dd - Show all commits

View File

@@ -87,7 +87,7 @@ impl UnownedFd {
} }
impl Drop for UnownedFd { impl Drop for UnownedFd {
fn drop(&mut self) { fn drop(&mut self) {
self.0.take().unwrap().into_inner().into_raw_fd(); let _ = self.0.take().unwrap().into_inner().into_raw_fd();
} }
} }