(self, *args)
| 859 | win.after(100, lambda: (win.lift(), win.focus_force())) |
| 860 | |
| 861 | def map_select(self, *args): |
| 862 | log.debug("map_select: option=%s to=%s from=%s", self.option.get(), self.to_ip.get(), self.from_ip.get()) |
| 863 | self.trigger['state'] = 'disabled' |
| 864 | self.analyze_button['state'] = 'disabled' |
| 865 | self.ibutton['state'] = 'disabled' |
| 866 | self.browser_button['state'] = 'disabled' |
| 867 | self.generate_graph() |
| 868 | # ibutton and browser_button enabled inside generate_graph on success only |
| 869 | self.trigger['state'] = 'normal' |
| 870 | self.analyze_button['state'] = 'normal' |
| 871 | self.base.after(100, self._force_focus) |
| 872 | |
| 873 | def zoom_in(self): |
| 874 | if self.img: |
nothing calls this directly
no test coverage detected