1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-28 07:23:13 -04:00

Replace some ... with

This commit is contained in:
Emil Ernerfeldt
2024-05-29 11:48:50 +02:00
parent ffbc63e147
commit 5eee463851
5 changed files with 12 additions and 12 deletions

View File

@@ -103,9 +103,9 @@ impl eframe::App for Application {
None => "Unfocus the window, fast!".to_owned(),
Some(t) => {
if let Ok(elapsed) = t.duration_since(SystemTime::now()) {
format!("Resetting attention in {} s...", elapsed.as_secs())
format!("Resetting attention in {} s", elapsed.as_secs())
} else {
"Resetting attention...".to_owned()
"Resetting attention".to_owned()
}
}
}