Override base method.
(self, index)
| 476 | command=self.show_stack_frame) |
| 477 | |
| 478 | def on_select(self, index): |
| 479 | "Override base method." |
| 480 | if 0 <= index < len(self.stack): |
| 481 | self.gui.show_frame(self.stack[index]) |
| 482 | |
| 483 | def on_double(self, index): |
| 484 | "Override base method." |
nothing calls this directly
no test coverage detected