(self, action, actions, type, win, X, Y, x, y, data)
| 682 | self.draw_icons() |
| 683 | |
| 684 | def show_dnd_icon(self, action, actions, type, win, X, Y, x, y, data): |
| 685 | self.deselect_everything() |
| 686 | self.canvas.delete("all") |
| 687 | self.canvas.create_image(self.canvas_width/2, self.canvas_height/2, image = self.dnd_glow_icon) |
| 688 | |
| 689 | def draw_icons(self, event = None): |
| 690 | #Calculate cell width |
nothing calls this directly
no test coverage detected