(self, which, value)
| 822 | _tkExec(self.entry.config,bg=color) |
| 823 | |
| 824 | def _setFontComponent(self, which, value): |
| 825 | font = list(self.font) |
| 826 | font[which] = value |
| 827 | self.font = tuple(font) |
| 828 | if self.entry: |
| 829 | #self.entry.config(font=self.font) |
| 830 | _tkExec(self.entry.config, font=self.font) |
| 831 | |
| 832 | def setFace(self, face): |
| 833 | if face in ['helvetica','arial','courier','times roman']: |