mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 22:42:25 -04:00
Set calendar labels to emptyColour
This commit is contained in:
parent
834f2de99b
commit
ebd3ca8a8f
2 changed files with 1 additions and 1 deletions
|
@ -1103,7 +1103,6 @@ message GraphsPreferencesOut {
|
|||
}
|
||||
Weekday calendar_first_day_of_week = 1;
|
||||
bool card_counts_separate_inactive = 2;
|
||||
|
||||
}
|
||||
|
||||
message RevlogEntry {
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue