Closed empeusz closed 6 years ago
@empeusz Currently not.
@jhoobergs I see... can we move this one to pull request section then ? Or should I create a new one ?
@empeusz You should create a PR yourself with the fixes.
Finally I was able to change it by modyfing public void setupDateTimeInterpreter
and Overriding
@Override
public String interpretTime(int hour, int minutes) {
String strMinutes = String.format("%02d", minutes);
if (minutes > 0) {
return strMinutes;
}
return hour + ":" + strMinutes;
}});
May come in handy for other users ;)
Is it possible to set or modify NewEventTimeResolutionInMinutes so it can display hours, half-hours and 15min's as shown on attached png?