Install a timer, which calls fun after t milliseconds.
(self, fun, t)
| 702 | self.cv.focus_force() |
| 703 | |
| 704 | def _ontimer(self, fun, t): |
| 705 | """Install a timer, which calls fun after t milliseconds. |
| 706 | """ |
| 707 | if t == 0: |
| 708 | self.cv.after_idle(fun) |
| 709 | else: |
| 710 | self.cv.after(t, fun) |
| 711 | |
| 712 | def _createimage(self, image): |
| 713 | """Create and return image item on canvas. |
no test coverage detected