From f7fde74a8d5f676b70f1eb8c8e5a65e76c67edac Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Fri, 29 Mar 2024 14:13:08 +0400 Subject: input: Add Tracy span to notify activity --- src/input.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/input.rs b/src/input.rs index 41024272..835c0b64 100644 --- a/src/input.rs +++ b/src/input.rs @@ -58,6 +58,7 @@ impl State { if self.niri.monitors_active { // Notify the idle-notifier of activity. if should_notify_activity(&event) { + let _span = tracy_client::span!("IdleNotifierState::notify_activity"); self.niri .idle_notifier_state .notify_activity(&self.niri.seat); -- cgit