From f63ecba5fe4209ed7b99a7a5b8e6d9b1507b48ad Mon Sep 17 00:00:00 2001 From: chrox Date: Wed, 18 Dec 2024 12:03:16 +0100 Subject: [PATCH] Add Readest title in taskbar on Windows, closes #26 --- apps/readest-app/src-tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/readest-app/src-tauri/src/lib.rs b/apps/readest-app/src-tauri/src/lib.rs index 5a16192a..260c357c 100644 --- a/apps/readest-app/src-tauri/src/lib.rs +++ b/apps/readest-app/src-tauri/src/lib.rs @@ -129,7 +129,7 @@ pub fn run() { )?; } let win_builder = WebviewWindowBuilder::new(app, "main", WebviewUrl::default()) - .title("") + .title("Readest") .inner_size(800.0, 600.0) .resizable(true) .maximized(true);