From 577a17e4e491b90b57d821028ae3dbbddaee03ab Mon Sep 17 00:00:00 2001 From: Victoria Fischer Date: Sat, 2 Nov 2024 13:11:45 +0100 Subject: [PATCH] animations: testpattern: extend update time to 10 seconds --- src/animations.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/animations.rs b/src/animations.rs index 88d1062..a90d38e 100644 --- a/src/animations.rs +++ b/src/animations.rs @@ -105,7 +105,7 @@ pub struct TestPattern { impl TestPattern { pub fn new(surface: T) -> Self { - TestPattern { surface, updater: Periodically::new_every_n_seconds(3), pattern: Pattern::Red } + TestPattern { surface, updater: Periodically::new_every_n_seconds(10), pattern: Pattern::Red } } }