Handle the Find button.
(self, event=None)
| 84 | self.make_button("Replace All", self.replace_all) |
| 85 | |
| 86 | def find_it(self, event=None): |
| 87 | "Handle the Find button." |
| 88 | self.do_find(False) |
| 89 | |
| 90 | def replace_it(self, event=None): |
| 91 | """Handle the Replace button. |