From ad384c7fd885b436145cbfd4eb9a5e51c574ecfe Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 16 Sep 2019 08:43:54 +0530 Subject: [PATCH] Only set the users font size on not There are apparently books out their that rely on being able to control the font size of . --- src/pyj/read_book/settings.pyj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pyj/read_book/settings.pyj b/src/pyj/read_book/settings.pyj index 7e05f72c65..d4004b0e37 100644 --- a/src/pyj/read_book/settings.pyj +++ b/src/pyj/read_book/settings.pyj @@ -19,7 +19,7 @@ update_settings() def apply_font_size(): - document.documentElement.style.fontSize = document.body.style.fontSize = '{}px'.format(opts.base_font_size) + document.documentElement.style.fontSize = '{}px'.format(opts.base_font_size) def apply_colors():