(self)
| 835 | self.selected_file_indices[file_index] = self.canvas.create_rectangle(i*self.cell_width+2, j*35+2, (i+1)*self.cell_width-1, (j+1)*35-1, fill = '', outline = 'Red') |
| 836 | |
| 837 | def deselect_everything(self): |
| 838 | #Delete selected file list |
| 839 | self.selected_file_indices.clear() |
| 840 | #Redraw all icons and remove any 'selected' highlighting rectangles |
| 841 | self.draw_icons() |
| 842 | |
| 843 | def change_dir(self, event): |
| 844 | #Delete selected file list |
no test coverage detected