(self, color)
| 816 | _tkCall(self.text.set, text) |
| 817 | |
| 818 | def setFill(self, color): |
| 819 | self.fill = color |
| 820 | if self.entry: |
| 821 | #self.entry.config(bg=color) |
| 822 | _tkExec(self.entry.config,bg=color) |
| 823 | |
| 824 | def _setFontComponent(self, which, value): |
| 825 | font = list(self.font) |
no test coverage detected