From 394c018e114b82ecb08a63ec5c5946d32e25f17b Mon Sep 17 00:00:00 2001 From: Ferdinand Schober Date: Fri, 6 Feb 2026 15:39:00 +0100 Subject: [PATCH] ad fixme for memory leak --- input-capture/src/macos.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/input-capture/src/macos.rs b/input-capture/src/macos.rs index c68f6e7..ff8317d 100644 --- a/input-capture/src/macos.rs +++ b/input-capture/src/macos.rs @@ -646,6 +646,7 @@ unsafe fn configure_cf_settings() -> Result<(), MacosCaptureCreationError> { let event_source = CGEventSource::new(CGEventSourceStateID::CombinedSessionState) .map_err(|_| MacosCaptureCreationError::EventSourceCreation)?; CGEventSourceSetLocalEventsSuppressionInterval(event_source, 0.05); + // FIXME Memory Leak // This is a private settings that allows the cursor to be hidden while in the background. // It is used by Barrier and other apps.