Handle undo action.
(self)
| 358 | self.action_redo.setToolTip("No operations available to redo (Ctrl+Y, Ctrl+Shift+Z)") |
| 359 | |
| 360 | def on_undo(self): |
| 361 | """Handle undo action.""" |
| 362 | self.graph.undo_last_command() |
| 363 | |
| 364 | def on_redo(self): |
| 365 | """Handle redo action.""" |
nothing calls this directly
no test coverage detected