Redo the last undone command.
(self)
| 70 | return False |
| 71 | |
| 72 | def redo_last_command(self): |
| 73 | """Redo the last undone command.""" |
| 74 | description = self.command_history.redo() |
| 75 | if description: |
| 76 | self.commandRedone.emit(description) |
| 77 | return True |
| 78 | return False |
| 79 | |
| 80 | def can_undo(self): |
| 81 | """Check if undo is available.""" |