diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2024-03-29 14:13:08 +0400 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2024-03-29 14:13:08 +0400 |
| commit | f7fde74a8d5f676b70f1eb8c8e5a65e76c67edac (patch) | |
| tree | fb1fcf6e5bc38feffcee055efdffd2dcb9616f4e /src/input.rs | |
| parent | 0470a833a19b4a18df4d67662a1a64264fad436c (diff) | |
| download | niri-f7fde74a8d5f676b70f1eb8c8e5a65e76c67edac.tar.gz niri-f7fde74a8d5f676b70f1eb8c8e5a65e76c67edac.tar.bz2 niri-f7fde74a8d5f676b70f1eb8c8e5a65e76c67edac.zip | |
input: Add Tracy span to notify activity
Diffstat (limited to 'src/input.rs')
| -rw-r--r-- | src/input.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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); |
