Small bugfix: 'Delete selected stacks' was not working from stack tech component editor's context menu

This commit is contained in:
Matthias Koefferlein 2024-07-27 17:26:23 +02:00
parent fb83b9fbc9
commit fec61438d4
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ NetTracerTechComponentEditor::NetTracerTechComponentEditor (QWidget *parent)
connect (action, SIGNAL (triggered ()), this, SLOT (add_clicked ()));
stack_tree->addAction (action);
action = new QAction (QObject::tr ("Delete Selected Stacks"), this);
connect (action, SIGNAL (triggered ()), this, SLOT (delete_clicked ()));
connect (action, SIGNAL (triggered ()), this, SLOT (del_clicked ()));
stack_tree->addAction (action);
action = new QAction (QObject::tr ("Duplicate Stack"), this);
connect (action, SIGNAL (triggered ()), this, SLOT (clone_clicked ()));