aboutsummaryrefslogtreecommitdiffstats
path: root/src/custom.c
diff options
context:
space:
mode:
authorMorgan Seltzer <MorganSeltzer000@gmail.com>2021-06-07 17:13:23 -0400
committerLukas Fleischer <lfleischer@calcurse.org>2021-08-07 13:42:10 -0400
commite3fc73e0c76addc0893ad3ceeba7ef8442133a51 (patch)
tree16f5fe4e89f5ace43471754c170c936bc9103f4c /src/custom.c
parent61ed5f835cae29ce6405ec34a7e310d5ea90327b (diff)
downloadcalcurse-e3fc73e0c76addc0893ad3ceeba7ef8442133a51.tar.gz
calcurse-e3fc73e0c76addc0893ad3ceeba7ef8442133a51.zip
Backend changes for first day of week
Previously only Sunday and Monday were allowed for the first day of the week, and was internally treated as a binary variable. This patch changes the backend so all days are accepted, a future patch will allow users to actually select other days. Addresses GitHub feature request #321. Signed-off-by: Morgan Seltzer <MorganSeltzer000@gmail.com> Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/custom.c')
-rw-r--r--src/custom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/custom.c b/src/custom.c
index 889772e..5f66194 100644
--- a/src/custom.c
+++ b/src/custom.c
@@ -702,7 +702,7 @@ static void print_general_option(int i, WINDOW *win, int y, int hilt, void *cb_d
case FIRST_DAY_OF_WEEK:
custom_apply_attr(win, ATTR_HIGHEST);
mvwaddstr(win, y, XPOS + strlen(opt[FIRST_DAY_OF_WEEK]),
- ui_calendar_week_begins_on_monday()? _("Monday") :
+ ui_calendar_get_wday_start()? _("Monday") :
_("Sunday"));
custom_remove_attr(win, ATTR_HIGHEST);
mvwaddstr(win, y + 1, XPOS,