我正在使用以下配置行来全局设置kivy使用的字体:
Config.set('graphics', 'default_font', '["Arial", "C:/Windows/Fonts/arial.ttf", "C:/Windows/Fonts/ariali.ttf", "C:/Windows/Fonts/arialbd.ttf", "C:/Windows/Fonts/arialbi.ttf"]')
#or this
#Config.set('graphics', 'default_font', ["Arial", "C:/Windows/Fonts/arial.ttf", "C:/Windows/Fonts/ariali.ttf", "C:/Windows/Fonts/arialbd.ttf", "C:/Windows/Fonts/arialbi.ttf"])
Config.write()
什么都没有改变。 Kivy仍在使用它的默认Roboto字体。我在这里想念什么?有什么建议吗?
答案 0 :(得分:2)
从1.10版开始,default_font
现在位于kivy
的{{1}}部分中(文档中未提及)。看来Config
仍出现在default_font
部分中,但被忽略了。