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.empty();
|
||||||
grid.cell(|ui| {
|
grid.cell(|ui| {
|
||||||
ui.with_layout(Layout::top_down_justified(Align::Center), |ui| {
|
ui.with_layout(Layout::top_down_justified(Align::Center), |ui| {
|
||||||
if ui.button("Abbrechen").clicked() {
|
if ui.button("Cancel").clicked() {
|
||||||
close = true;
|
close = true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
grid.cell(|ui| {
|
grid.cell(|ui| {
|
||||||
ui.with_layout(Layout::top_down_justified(Align::Center), |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(
|
*self.selection = Date::from_utc(
|
||||||
NaiveDate::from_ymd(
|
NaiveDate::from_ymd(
|
||||||
popup_state.year,
|
popup_state.year,
|
||||||
|
|
Loading…
Reference in a new issue