1
0
mirror of https://github.com/XFox111/GUTSchedule.git synced 2026-04-22 06:58:01 +03:00

FIxed semester selection for "For semester" button

This commit is contained in:
Michael Gordeev
2020-02-17 13:42:15 +03:00
parent 452967ac38
commit 867e9b5393
@@ -253,7 +253,12 @@ namespace GUTSchedule.Droid.Activities
forMonth.Click += (s, e) => SetDate(30); forMonth.Click += (s, e) => SetDate(30);
forSemester.Click += (s, e) => forSemester.Click += (s, e) =>
{ {
endDate = DateTime.Today.Month > 8 ? new DateTime(DateTime.Today.Year + 1, 1, 1) : new DateTime(DateTime.Today.Year, 8, 31); if (DateTime.Today.Month == 1)
endDate = new DateTime(DateTime.Today.Year, 1, 31);
else if (DateTime.Today.Month > 8)
endDate = new DateTime(DateTime.Today.Year + 1, 1, 31);
else
endDate = new DateTime(DateTime.Today.Year, 8, 31);
end.Text = endDate.ToShortDateString(); end.Text = endDate.ToShortDateString();
}; };