diff options
Diffstat (limited to 'src/ui-calendar.c')
-rw-r--r-- | src/ui-calendar.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui-calendar.c b/src/ui-calendar.c index e4d5289..f69ea4c 100644 --- a/src/ui-calendar.c +++ b/src/ui-calendar.c @@ -159,7 +159,9 @@ void ui_calendar_set_first_day_of_week(enum wday first_day) /* Swap first day of week in calendar. */ void ui_calendar_change_first_day_of_week(void) { - wday_start = !wday_start; + wday_start++; + if(wday_start >= WEEKINDAYS) + wday_start = 0; } /* Return 1 if week begins on monday, 0 otherwise. */ |