From e53ae3f2b014be44ba26d4db4691ddc961a3faaa Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 24 Mar 2011 17:18:18 +0900 Subject: [PATCH] if the colour is missing, it should be black, not white --- anki/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anki/storage.py b/anki/storage.py index 0f4882fa5..f1966117e 100644 --- a/anki/storage.py +++ b/anki/storage.py @@ -418,7 +418,7 @@ order by modelId, ordinal"""): # ensure data is good conf['rtl'] = not not conf['rtl'] conf['pre'] = True - conf['qcol'] = conf['qcol'] or "#fff" + conf['qcol'] = conf['qcol'] or "#000" mods[row[0]].append(conf) # now we've gathered all the info, save it into the models for mid, fms in mods.items():