do not import unused items
This commit is contained in:
parent
5f4525e001
commit
c097b38558
1 changed files with 1 additions and 3 deletions
|
@ -1,5 +1,3 @@
|
|||
use egui_datepicker::DatePickerButton;
|
||||
|
||||
#[cfg(feature = "datetime")]
|
||||
mod serde_date_format;
|
||||
|
||||
|
@ -209,7 +207,7 @@ impl WidgetGallery {
|
|||
#[cfg(feature = "datetime")]
|
||||
{
|
||||
ui.add(doc_link_label("DatePickerButton", "DatePickerButton"));
|
||||
ui.add(DatePickerButton::new(date));
|
||||
ui.add(egui_datepicker::DatePickerButton::new(date));
|
||||
ui.end_row();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue