From 89a0c2e68f7a1b1164bdd8fd53c6b95a7f3a6edd Mon Sep 17 00:00:00 2001 From: Arnold Loubriat Date: Mon, 27 Oct 2025 20:47:07 +0100 Subject: [PATCH] fix: Activate when an assistive technology is actually running on Unix --- platforms/unix/src/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platforms/unix/src/context.rs b/platforms/unix/src/context.rs index 1ef056d79..3fe89ba41 100644 --- a/platforms/unix/src/context.rs +++ b/platforms/unix/src/context.rs @@ -151,7 +151,7 @@ async fn run_event_loop( ); let status = StatusProxy::new(&session_bus).await?; - let changes = status.receive_is_enabled_changed().await.fuse(); + let changes = status.receive_screen_reader_enabled_changed().await.fuse(); pin!(changes); #[cfg(not(feature = "tokio"))]