Compare commits

..

1 Commits

Author SHA1 Message Date
NimBold de97fa1e65 test(startup): isolate renderer logger IPC (#37)
- Issue #37: isolate the renderer logger startup command from the full Windows launch path.\n- Keep the logger IPC call while removing unrelated renderer imports and application startup work.
2026-08-27 21:10:02 +03:30
+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]