Compare commits

..

1 Commits

Author SHA1 Message Date
NimBold 9d3183caef test(startup): isolate WebView renderer for issue 37 2026-08-27 20:47:47 +03:30
2 changed files with 3 additions and 6 deletions
+3 -2
View File
@@ -18200,8 +18200,9 @@ fn toggle_log_pause(caller: tauri::WebviewWindow, pause: bool) -> Result<(), Str
}
#[tauri::command]
fn is_log_paused() -> bool {
LOG_PAUSED.load(std::sync::atomic::Ordering::Relaxed)
fn is_log_paused(caller: tauri::WebviewWindow) -> bool {
properties_window::ensure_main_window(&caller).is_ok()
&& LOG_PAUSED.load(std::sync::atomic::Ordering::Relaxed)
}
#[tauri::command]
-4
View File
@@ -1,7 +1,3 @@
import { initLogger } from "./utils/logger";
void initLogger();
const rootElement = document.getElementById("root");
if (rootElement) {
rootElement.textContent = "Firelink startup control";