Delay subsequent canvas actions for delay ms.
(self, delay)
| 558 | self.cv.update() |
| 559 | |
| 560 | def _delay(self, delay): |
| 561 | """Delay subsequent canvas actions for delay ms.""" |
| 562 | self.cv.after(delay) |
| 563 | |
| 564 | def _iscolorstring(self, color): |
| 565 | """Check if the string color is a legal Tkinter color string. |