-
Notifications
You must be signed in to change notification settings - Fork 28
Better Calendar interface #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
primitives/src/calendar.rs
Outdated
(ctx.set_view_date)(view_date); | ||
} | ||
ctx.focused_date.set(Some(new_date)); | ||
}; | ||
match e.key() { | ||
Key::ArrowLeft => { | ||
e.prevent_default(); | ||
set_focused_date(focused_date.prev_day()); | ||
set_focused_date(focused_date - Days::new(1)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consider using NaiveDay::pred_opt()
instead of subtraction (it's panicking under the hood):
https://docs.rs/chrono/latest/chrono/struct.NaiveDate.html#method.pred_opt
Yes, a |
Plan