From 1a66c16cbd1c1c68969418a10b2ff56ac3d056a0 Mon Sep 17 00:00:00 2001 From: pythops Date: Thu, 12 Sep 2024 09:15:15 +0200 Subject: [PATCH] decrease ttl for notifs --- oryx-tui/src/notification.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oryx-tui/src/notification.rs b/oryx-tui/src/notification.rs index 0a00254..7d77bec 100644 --- a/oryx-tui/src/notification.rs +++ b/oryx-tui/src/notification.rs @@ -69,7 +69,7 @@ impl Notification { let notif = Notification { message: message.to_string(), level, - ttl: 16, + ttl: 3, }; sender.send(Event::Notification(notif))?;