english
This commit is contained in:
parent
abe6daf880
commit
2eae720ee6
1 changed files with 2 additions and 2 deletions
|
@ -323,14 +323,14 @@ impl<'a> DatePickerPopup<'a> {
|
|||
grid.empty();
|
||||
grid.cell(|ui| {
|
||||
ui.with_layout(Layout::top_down_justified(Align::Center), |ui| {
|
||||
if ui.button("Abbrechen").clicked() {
|
||||
if ui.button("Cancel").clicked() {
|
||||
close = true;
|
||||
}
|
||||
});
|
||||
});
|
||||
grid.cell(|ui| {
|
||||
ui.with_layout(Layout::top_down_justified(Align::Center), |ui| {
|
||||
if ui.button("Speichern").clicked() {
|
||||
if ui.button("Save").clicked() {
|
||||
*self.selection = Date::from_utc(
|
||||
NaiveDate::from_ymd(
|
||||
popup_state.year,
|
||||
|
|
Loading…
Reference in a new issue