You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we filter out all day events in the get_closest function
This is done because otherwise, the all day event will always be shown when it's taking place even if other events are more relevant
Option 1:
Make this optional using a flag
Option 2:
Show other event unless the end time of the all day event is before the start time of the closest event
I personally prefer option 2 as it will do things the 'smart' way, only show all day events if there's nothing else more interesting
The text was updated successfully, but these errors were encountered:
agh, good question
maybe just print out "multiple all day events" or something like this, prompting the user to click it and view the full calendar
or maybe, print them comma separated, with max length of like 20 chars followed by ...
Example: Buy milk, Call mom, Check on...
Currently, we filter out all day events in the get_closest function
This is done because otherwise, the all day event will always be shown when it's taking place even if other events are more relevant
Option 1:
Make this optional using a flag
Option 2:
Show other event unless the end time of the all day event is before the start time of the closest event
I personally prefer option 2 as it will do things the 'smart' way, only show all day events if there's nothing else more interesting
The text was updated successfully, but these errors were encountered: