Prevents the parent widgets to be notified about an update. This is required to improve performances in case of widgets updated multiple times in a procedure.
(self)
| 407 | self.style.align_version() |
| 408 | |
| 409 | def disable_refresh(self): |
| 410 | """ Prevents the parent widgets to be notified about an update. |
| 411 | This is required to improve performances in case of widgets updated |
| 412 | multiple times in a procedure. |
| 413 | """ |
| 414 | self.refresh_enabled = False |
| 415 | |
| 416 | def enable_refresh(self): |
| 417 | self.refresh_enabled = True |
no outgoing calls
no test coverage detected