(self, fraction, color='blue')
| 444 | self.setProgressFraction(0.0) |
| 445 | |
| 446 | def setProgressFraction(self, fraction, color='blue'): |
| 447 | self.fraction = fraction |
| 448 | self.color = color |
| 449 | self.paint() |
| 450 | self.canvas.update_idletasks() |
| 451 | |
| 452 | def paint(self, *args): |
| 453 | totalWidth = self.canvas.winfo_width() |
no test coverage detected