Handle redo action.
(self)
| 362 | self.graph.undo_last_command() |
| 363 | |
| 364 | def on_redo(self): |
| 365 | """Handle redo action.""" |
| 366 | self.graph.redo_last_command() |
| 367 | |
| 368 | def on_undo_history(self): |
| 369 | """Open the undo history dialog.""" |
nothing calls this directly
no test coverage detected