(self)
| 179 | ## Sets the clock colors. |
| 180 | # |
| 181 | def setColors(self): |
| 182 | if self.showImage: |
| 183 | self.bgcolor = 'antique white' |
| 184 | self.timecolor = 'dark orange' |
| 185 | self.circlecolor = 'dark green' |
| 186 | else: |
| 187 | self.bgcolor = '#000000' |
| 188 | self.timecolor = '#ffffff' |
| 189 | self.circlecolor = '#808080' |
| 190 | |
| 191 | ## Toggles the displaying of a background image. |
| 192 | # |
no outgoing calls
no test coverage detected