Add check button to recurse down subdirectories.
(self)
| 115 | self.globent = self.make_entry("In files:", self.globvar)[0] |
| 116 | |
| 117 | def create_other_buttons(self): |
| 118 | "Add check button to recurse down subdirectories." |
| 119 | btn = Checkbutton( |
| 120 | self.make_frame()[0], variable=self.recvar, |
| 121 | text="Recurse down subdirectories") |
| 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." |
nothing calls this directly
no test coverage detected