(self, event)
| 152 | self.filter_command() |
| 153 | |
| 154 | def dirs_select_event(self, event): |
| 155 | dir, pat = self.get_filter() |
| 156 | subdir = self.dirs.get('active') |
| 157 | dir = os.path.normpath(os.path.join(self.directory, subdir)) |
| 158 | self.set_filter(dir, pat) |
| 159 | |
| 160 | def files_double_event(self, event): |
| 161 | self.ok_command() |
nothing calls this directly
no test coverage detected