Create the base search dialog and add a button for Find Next.
(self)
| 63 | "Dialog for finding a pattern in text." |
| 64 | |
| 65 | def create_widgets(self): |
| 66 | "Create the base search dialog and add a button for Find Next." |
| 67 | SearchDialogBase.create_widgets(self) |
| 68 | # TODO - why is this here and not in a create_command_buttons? |
| 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." |
nothing calls this directly
no test coverage detected