update the default event time to 13:00 - 14:00
This commit is contained in:
parent
84d6010ffe
commit
128eab6840
|
@ -53,11 +53,11 @@ public class EventActivity extends AppCompatActivity implements DBHelper.DBOpera
|
|||
if (dayCode == null || dayCode.isEmpty())
|
||||
return;
|
||||
|
||||
mEventStartDateTime = Formatter.getDateTimeFromCode(dayCode);
|
||||
mEventStartDateTime = Formatter.getDateTimeFromCode(dayCode).withHourOfDay(13);
|
||||
updateStartDate();
|
||||
updateStartTime();
|
||||
|
||||
mEventEndDateTime = Formatter.getDateTimeFromCode(dayCode);
|
||||
mEventEndDateTime = Formatter.getDateTimeFromCode(dayCode).withHourOfDay(14);
|
||||
updateEndDate();
|
||||
updateEndTime();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue