Skip to content

Commit

Permalink
make to_duration accept Int<Option<Duration>>
Browse files Browse the repository at this point in the history
  • Loading branch information
edvorg committed Sep 23, 2024
1 parent c7fb51a commit b1d3df5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ let mut toasts = Toasts::default();

```rust
// somewhere within [egui::App::update]...
toasts.info("Hello world!").set_duration(Duration::from_secs(5));
toasts.info("Hello world!").set_duration(Some(Duration::from_secs(5)));
// ...
toasts.show(ctx);
```
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const SUCCESS_COLOR: Color32 = Color32::from_rgb(140, 230, 140);
///
/// # egui_notify::__run_test_ctx(|ctx| {
/// let mut t = Toasts::default();
/// t.info("Hello, World!").set_duration(Some(Duration::from_secs(5))).set_closable(true);
/// t.info("Hello, World!").set_duration(Duration::from_secs(5)).set_closable(true);
/// // More app code
/// t.show(ctx);
/// # });
Expand Down
4 changes: 2 additions & 2 deletions src/toast.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,8 @@ impl Toast {
}

/// In what time should the toast expire? Set to `None` for no expiry.
pub fn set_duration(&mut self, duration: Option<Duration>) -> &mut Self {
if let Some(duration) = duration {
pub fn set_duration(&mut self, duration: impl Into<Option<Duration>>) -> &mut Self {
if let Some(duration) = duration.into() {
let max_dur = duration_to_seconds_f32(duration);
self.duration = Some((max_dur, max_dur));
} else {
Expand Down

0 comments on commit b1d3df5

Please sign in to comment.