From 19012e6110a6d53a4eeee1eb91658f156e828330 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Tue, 29 Jan 2013 09:40:47 +0900 Subject: [PATCH] don't set browser font on card creation (#543) --- anki/models.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/anki/models.py b/anki/models.py index 64a4f1798..8cd645d06 100644 --- a/anki/models.py +++ b/anki/models.py @@ -62,8 +62,9 @@ defaultTemplate = { 'did': None, 'bqfmt': "", 'bafmt': "", - 'bfont': "Arial", - 'bsize': 12, + # we don't define these so that we pick up system font size until set + #'bfont': "Arial", + #'bsize': 12, } class ModelManager(object):