Add undo / redo command

The undo/redo command of diagram editor is
shared to the terminal strip editor.
This commit is contained in:
joshua
2025-07-01 23:37:16 +02:00
parent a2ae8255ac
commit a121fbe530
3 changed files with 9 additions and 2 deletions

View File

@@ -55,6 +55,11 @@ TerminalStripEditorWindow::TerminalStripEditorWindow(QETProject *project, QWidge
m_project(project)
{
ui->setupUi(this);
if (auto diagram_editor = QETApp::diagramEditor(project)) {
ui->m_tool_bar->addSeparator();
ui->m_tool_bar->addAction(diagram_editor->undo);
ui->m_tool_bar->addAction(diagram_editor->redo);
}
ui->m_remove_terminal->setDisabled(true);
addTreeDockWidget();