Changes the font scaling and saves it in the pickle container. :param `scale`: Float representing the font scale.
(self, scale, evt=None)
| 384 | self.font_sub.MenuItems[-1].Check(True) |
| 385 | |
| 386 | def _setFontScale(self, scale, evt=None): |
| 387 | ''' |
| 388 | Changes the font scaling and saves it in the pickle container. |
| 389 | |
| 390 | :param `scale`: Float representing the font scale. |
| 391 | ''' |
| 392 | self.Font = self.Font.Scaled(scale) |
| 393 | self.options.Set("FontScale", scale) |
| 394 | |
| 395 | def _createShowColMenuItems(self): |
| 396 | ''' |