(self, *args)
| 727 | projectPathFilename = None |
| 728 | |
| 729 | def __init__(self, *args): |
| 730 | editor_res_path = os.path.join(os.path.dirname(__file__), 'res') |
| 731 | super(Editor, self).__init__( |
| 732 | *args, static_file_path={'editor_resources': editor_res_path}) |
| 733 | |
| 734 | def idle(self): |
| 735 | for drag_helper in self.drag_helpers: |