Skip to content

Commit

Permalink
examples/gallery.rs: extend data list
Browse files Browse the repository at this point in the history
  • Loading branch information
dhardy committed Mar 2, 2025
1 parent 7e752ba commit efd1b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/gallery.rs
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ fn filter_list() -> Box<dyn Widget<Data = AppData>> {
}
let data = Data {
mode: SelectionMode::None,
list: (2019..=2023)
list: (2019..=2025)
.flat_map(|year| MONTHS.iter().map(move |m| format!("{m} {year}")))
.collect(),
};
Expand Down

0 comments on commit efd1b05

Please sign in to comment.