INNER CODE UNIT · Rust

Err

Blur009/Blur-AutoClicker · src-tauri/src/lib.rs:356

                if let Err(e) = crate::engine::worker::start_clicker_inner(&handle) {
                    log::error!("[ZoneMonitor] start failed: {e}");
                } else {
                    state
                        .zone_started_clicker
                        .store(true, std::sync::atomic::Ordering::SeqCst);
                }
            }
            // Transition: inside → outside, stop clicker if we started it
            else if !in_start_zone && prev_in_start_zone && zone_started {
                if running {
                    if let Err(e) = crate::engine::worker::stop_clicker_inner(
                        &handle,
                        Some(String::from("Left start zone")),
                    ) {
                        log::error!("[ZoneMonitor] stop failed: {e}");
                    }
                }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…