I'm using the following config lines to set the font used by kivy globally:
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()
Nothing is changing. Kivy is still using it's default Roboto font. What am I missing here? Any suggestions?