Create base command buttons and add button for Search Files.
(self)
| 122 | btn.pack(side="top", fill="both") |
| 123 | |
| 124 | def create_command_buttons(self): |
| 125 | "Create base command buttons and add button for Search Files." |
| 126 | SearchDialogBase.create_command_buttons(self) |
| 127 | self.make_button("Search Files", self.default_command, isdef=True) |
| 128 | |
| 129 | def default_command(self, event=None): |
| 130 | """Grep for search pattern in file path. The default command is bound |