Handle the Find Next button as the default command.
(self, event=None)
| 69 | self.make_button("Find Next", self.default_command, isdef=True) |
| 70 | |
| 71 | def default_command(self, event=None): |
| 72 | "Handle the Find Next button as the default command." |
| 73 | if not self.engine.getprog(): |
| 74 | return |
| 75 | self.find_again(self.text) |
| 76 | |
| 77 | def find_again(self, text): |
| 78 | """Repeat the last search. |
nothing calls this directly
no test coverage detected