read header font from config

This commit is contained in:
Qingping Hou
2013-01-13 11:23:30 +08:00
parent 687aabc173
commit 02ea5f1fbf
2 changed files with 18 additions and 0 deletions

View File

@@ -57,6 +57,12 @@ function ReaderFont:onReadSettings(config)
end
self.ui.document:setFontFace(self.font_face)
self.header_font_face = config:readSetting("header_font_face")
if not self.header_font_face then
self.header_font_face = self.ui.document.header_font
end
self.ui.document:setHeaderFont(self.header_font_face)
self.font_size = config:readSetting("font_size")
if not self.font_size then
--@TODO change this! 12.01 2013 (houqp)