From 8316c24d0ddc28883526a9da26bf42d1292b3b3f Mon Sep 17 00:00:00 2001 From: Sakamoto Shiina <68018796+ShiinaSakamoto@users.noreply.github.com> Date: Sun, 4 May 2025 02:22:44 +0900 Subject: [PATCH] [bugfix] More fixes. c20b58a011a0f654b1523402a749eb13a5862355 --- src-tauri/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index ef8c6e4c..f22ba70f 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -7,7 +7,7 @@ pub fn run() { let _main_window = app.get_webview_window("main").unwrap(); // `main_window` is declared here for all builds #[cfg(debug_assertions)] - { main_window.open_devtools(); } + { _main_window.open_devtools(); } Ok(()) })