(self)
| 211 | return |
| 212 | |
| 213 | def close(self): |
| 214 | if self.after_id: |
| 215 | after_id = self.after_id |
| 216 | self.after_id = None |
| 217 | if DEBUG: print("cancel scheduled recolorizer") |
| 218 | self.after_cancel(after_id) |
| 219 | self.allow_colorizing = False |
| 220 | self.stop_colorizing = True |
| 221 | |
| 222 | def toggle_colorize_event(self, event=None): |
| 223 | """Toggle colorizing on and off. |
nothing calls this directly
no test coverage detected