()
| 634 | tk.Radiobutton.__init__(self, master, indicatoron=0, background=background, selectcolor=background, activebackground=background, selectimage=selectimage, image=image, highlightthickness=0, borderwidth=0, **kw) |
| 635 | |
| 636 | def initialize_font(): |
| 637 | if "Open Sans" in tkFont.families(): |
| 638 | default_font = tkFont.nametofont("TkDefaultFont") |
| 639 | default_font.configure(family="Open Sans", size=11) |
| 640 | |
| 641 | default_font = tkFont.nametofont("TkTextFont") |
| 642 | default_font.configure(family="Open Sans", size=11) |
| 643 | |
| 644 | if __name__ == "__main__": |
| 645 |
no test coverage detected