aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui-day.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui-day.c')
-rw-r--r--src/ui-day.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/ui-day.c b/src/ui-day.c
index ab4e7d9..f7fddef 100644
--- a/src/ui-day.c
+++ b/src/ui-day.c
@@ -1144,7 +1144,9 @@ int ui_day_height(int n, void *cb_data)
if (item->type == APPT ||
item->type == RECUR_APPT)
- return 3;
+ return conf.empty_appt_line ? 3 : 2;
+ else if (item->type == DAY_SEPARATOR)
+ return conf.dayseparator;
else
return 1;
}