(self, event = None)
| 1029 | self.deselect_everything() |
| 1030 | |
| 1031 | def clipboard_paste_thread_create(self, event = None): |
| 1032 | #Check number of files in clipboard |
| 1033 | if(len(self.clipboard_file_list) < 1): return |
| 1034 | #Create console/terminal window |
| 1035 | self.create_progress_window() |
| 1036 | #start thread |
| 1037 | self.thread = threading.Thread(target = self.clipboard_paste, args = (self.ftpController, self.clipboard_path_list, self.clipboard_file_list, self.detailed_clipboard_file_list, |
| 1038 | self.cut, self.copy)) |
| 1039 | self.thread.daemon = True |
| 1040 | self.thread.start() |
| 1041 | self.process_thread_requests() |
| 1042 | |
| 1043 | def clipboard_paste(self, ftpController, clipboard_path_list, clipboard_file_list, detailed_clipboard_file_list, cut, copy): |
| 1044 | #Set current status |
nothing calls this directly
no test coverage detected