Comment 2 for bug 1160367

Revision history for this message
Cleydyr de Albuquerque (cleydyr) wrote :

Maybe if we change the order of the commands in preferences.py from

self.chk_use_system_font.connect('toggled', lambda w: self.font_name.set_sensitive(not self.chk_use_system_font.get_active()))
self.chk_use_system_font.set_active(ConfigManager.get_conf('use-default-font'))

to
self.chk_use_system_font.set_active(ConfigManager.get_conf('use-default-font'))
self.chk_use_system_font.connect('toggled', lambda w: self.font_name.set_sensitive(not self.chk_use_system_font.get_active()))

It solves the problem, I guess.