(self, master, highpage)
| 281 | class FontPage(Frame): |
| 282 | |
| 283 | def __init__(self, master, highpage): |
| 284 | super().__init__(master) |
| 285 | self.highlight_sample = highpage.highlight_sample |
| 286 | self.create_page_font() |
| 287 | self.load_font_cfg() |
| 288 | |
| 289 | def create_page_font(self): |
| 290 | """Return frame of widgets for Font tab. |
nothing calls this directly
no test coverage detected