feat: UI elements for key combinations

This commit is contained in:
Sara Gerretsen 2025-12-16 15:46:21 +01:00
parent ab300878cf
commit c668771696
15 changed files with 415 additions and 33 deletions

View file

@ -30,3 +30,8 @@ void EditHistory::redo() {
this->undo_count--;
}
}
void EditHistory::clear_history() {
this->history.clear();
this->undo_count = 0;
}