From 936d06b84b0856975019ddacaa6fe4f2bcbcee84 Mon Sep 17 00:00:00 2001 From: Henrik Giesel Date: Wed, 6 Jan 2021 11:53:58 +0100 Subject: [PATCH] Default CardCounts to off --- ts/graphs/CardCounts.svelte | 2 +- ts/graphs/SeparateInactiveCheckbox.svelte | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/graphs/CardCounts.svelte b/ts/graphs/CardCounts.svelte index 51b405389..3a8489632 100644 --- a/ts/graphs/CardCounts.svelte +++ b/ts/graphs/CardCounts.svelte @@ -9,7 +9,7 @@ export let sourceData: pb.BackendProto.GraphsOut; export let i18n: I18n; - let separateInactive = false; + let separateInactive = true; let svg = null as HTMLElement | SVGElement | null; let bounds = defaultGraphBounds(); diff --git a/ts/graphs/SeparateInactiveCheckbox.svelte b/ts/graphs/SeparateInactiveCheckbox.svelte index 58050420b..24fac6072 100644 --- a/ts/graphs/SeparateInactiveCheckbox.svelte +++ b/ts/graphs/SeparateInactiveCheckbox.svelte @@ -2,7 +2,7 @@ import type { I18n } from "anki/i18n"; export let i18n: I18n; - export let separateInactive: boolean = false; + export let separateInactive: boolean = true; const label = i18n.tr(i18n.TR.STATISTICS_COUNTS_SEPARATE_SUSPENDED_BURIED_CARDS);