(self)
| 732 | *args, static_file_path={'editor_resources': editor_res_path}) |
| 733 | |
| 734 | def idle(self): |
| 735 | for drag_helper in self.drag_helpers: |
| 736 | drag_helper.update_position() |
| 737 | |
| 738 | if self.projectPathFilename != None and len(self.projectPathFilename) > 0: |
| 739 | if self.project.shouldUpdate(self.projectPathFilename): |
| 740 | print("Project changed externally - RELOADING PROJECT") |
| 741 | self.reload_project() |
| 742 | |
| 743 | def main(self): |
| 744 | import time |
nothing calls this directly
no test coverage detected