Get description of next undo operation.
(self)
| 86 | return self.command_history.can_redo() |
| 87 | |
| 88 | def get_undo_description(self): |
| 89 | """Get description of next undo operation.""" |
| 90 | return self.command_history.get_undo_description() |
| 91 | |
| 92 | def get_redo_description(self): |
| 93 | """Get description of next redo operation.""" |
no outgoing calls