diff --git a/apps/readest-app/src-tauri/src/lib.rs b/apps/readest-app/src-tauri/src/lib.rs index 17935fcd..3b66e0b8 100644 --- a/apps/readest-app/src-tauri/src/lib.rs +++ b/apps/readest-app/src-tauri/src/lib.rs @@ -268,7 +268,7 @@ pub fn run() { } #[cfg(target_os = "linux")] { - builder = builder.transparent(true); + builder = builder.transparent(true).background_color(tauri::window::Color(0, 0, 0, 0)); } builder diff --git a/apps/readest-app/src/app/library/page.tsx b/apps/readest-app/src/app/library/page.tsx index 7e05d8fa..06eb592c 100644 --- a/apps/readest-app/src/app/library/page.tsx +++ b/apps/readest-app/src/app/library/page.tsx @@ -619,7 +619,7 @@ const LibraryPageContent = ({ searchParams }: { searchParams: ReadonlyURLSearchP }; if (!appService || !insets || checkOpenWithBooks || checkLastOpenBooks) { - return
; + return ; } const showBookshelf = libraryLoaded || libraryBooks.length > 0; @@ -730,7 +730,7 @@ const LibraryPageContent = ({ searchParams }: { searchParams: ReadonlyURLSearchP const LibraryPage = () => { return ( -