Get description of next redo operation.
(self)
| 90 | return self.command_history.get_undo_description() |
| 91 | |
| 92 | def get_redo_description(self): |
| 93 | """Get description of next redo operation.""" |
| 94 | return self.command_history.get_redo_description() |
| 95 | |
| 96 | def clear_graph(self): |
| 97 | """Removes all nodes, connections, and groups from the scene.""" |
no outgoing calls