Compare commits

..

1 Commits

Author SHA1 Message Date
NimBold 48310ebb12 test(startup): isolate logger caller validation (#37)
- Issue #37: compare the Windows renderer startup path with the logging read command's caller extraction removed.\n- Keep the renderer logger IPC call and native startup otherwise unchanged.
2026-08-27 21:18:32 +03:30
+2 -3
View File
@@ -18200,9 +18200,8 @@ fn toggle_log_pause(caller: tauri::WebviewWindow, pause: bool) -> Result<(), Str
}
#[tauri::command]
fn is_log_paused(caller: tauri::WebviewWindow) -> bool {
properties_window::ensure_main_window(&caller).is_ok()
&& LOG_PAUSED.load(std::sync::atomic::Ordering::Relaxed)
fn is_log_paused() -> bool {
LOG_PAUSED.load(std::sync::atomic::Ordering::Relaxed)
}
#[tauri::command]