Set background color of the window
(self, color)
| 270 | raise GraphicsError, "window is closed" |
| 271 | |
| 272 | def setBackground(self, color): |
| 273 | """Set background color of the window""" |
| 274 | self.__checkOpen() |
| 275 | _tkExec(self.config, bg=color) |
| 276 | #self.config(bg=color) |
| 277 | |
| 278 | def setCoords(self, x1, y1, x2, y2): |
| 279 | """Set coordinates of window to run from (x1,y1) in the |
nothing calls this directly
no test coverage detected