(self, event = None)
| 1154 | self.canvas.bind("<Motion>", self.update_status_and_mouse) |
| 1155 | |
| 1156 | def start_wait(self, event = None): |
| 1157 | if(self.change_status is False): return |
| 1158 | if(self.continue_wait is True): |
| 1159 | self.continue_wait = False |
| 1160 | return |
| 1161 | self.disable_toolbar() |
| 1162 | self.wait_anim = True |
| 1163 | self.wait_frame_index = 1 |
| 1164 | self.master.after(100, self.do_wait) |
| 1165 | |
| 1166 | def cont_wait(self, event = None): |
| 1167 | self.continue_wait = True |
no test coverage detected