Skip to content

Commit

Permalink
Fix date/time picker type names in the gallery
Browse files Browse the repository at this point in the history
  • Loading branch information
tronical committed Jul 17, 2024
1 parent c0b4aaa commit f91670d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/gallery/ui/pages/controls_page.slint
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export component ControlsPage inherits Page {
}

GroupBox {
title: @tr("LineEdit - SpinBox - TimePicker - DatePicker");
title: @tr("LineEdit - SpinBox - TimePickerPopup - DatePickerPopup");
vertical-stretch: 0;

HorizontalBox {
Expand All @@ -106,15 +106,15 @@ export component ControlsPage inherits Page {
}

time-picker-button := Button {
text: @tr("Open TimePicker");
text: @tr("Open TimePickerPopup");

clicked => {
time-picker.show();
}
}

Button {
text: @tr("Open date picker");
text: @tr("Open DatePickerPopup");
clicked => {
date-picker.show();
}
Expand Down

0 comments on commit f91670d

Please sign in to comment.