fix: avoid pagination until book view is inited, closes #1983 (#1994)

This commit is contained in:
Huang Xin
2025-09-07 20:47:35 +08:00
committed by GitHub
parent 70a7f5be19
commit 71c2143cba
4 changed files with 25 additions and 3 deletions
+3 -1
View File
@@ -268,7 +268,9 @@ pub fn run() {
}
#[cfg(target_os = "linux")]
{
builder = builder.transparent(true).background_color(tauri::window::Color(0, 0, 0, 0));
builder = builder
.transparent(true)
.background_color(tauri::window::Color(0, 0, 0, 0));
}
builder