Skip to content

Commit 4b0a8cc

Browse files
authored
Merge pull request #1661 from cogentcore/date-picker
fix order of date picker short months
2 parents 0ba1432 + 4cb7494 commit 4b0a8cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

core/timepicker.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ func (tp *TimePicker) Init() {
131131
})
132132
}
133133

134-
var shortMonths = []string{"Jan", "Feb", "Apr", "Mar", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}
134+
var shortMonths = []string{"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"}
135135

136136
// DatePicker is a widget for picking a date.
137137
type DatePicker struct {

0 commit comments

Comments
 (0)