Check if redo is available.
(self)
| 82 | return self.command_history.can_undo() |
| 83 | |
| 84 | def can_redo(self): |
| 85 | """Check if redo is available.""" |
| 86 | return self.command_history.can_redo() |
| 87 | |
| 88 | def get_undo_description(self): |
| 89 | """Get description of next undo operation.""" |
no outgoing calls