Set calendar labels to emptyColour

This commit is contained in:
Henrik Giesel 2021-01-22 18:09:57 +01:00
parent 834f2de99b
commit ebd3ca8a8f
2 changed files with 1 additions and 1 deletions

View file

@ -1103,7 +1103,6 @@ message GraphsPreferencesOut {
}
Weekday calendar_first_day_of_week = 1;
bool card_counts_separate_inactive = 2;
}
message RevlogEntry {

View file

@ -178,6 +178,7 @@ export function renderCalendar(
.attr("height", height - 2)
.attr("x", x(1)! - 3)
.attr("y", (_d, index) => bounds.marginTop + index * height)
.attr("fill", emptyColour)
.attr("dominant-baseline", "hanging")
.attr("text-anchor", "end")
.attr("font-size", "small")