(self,event)
| 191 | ## Toggles the displaying of a background image. |
| 192 | # |
| 193 | def toggleImage(self,event): |
| 194 | if hasPIL and os.path.exists (self.imgPath): |
| 195 | self.showImage = not self.showImage |
| 196 | self.setColors() |
| 197 | self.resize(event) |
| 198 | |
| 199 | ## Redraws the whole clock. |
| 200 | # |