Skip to content

Commit

Permalink
Small bugfix: 'Delete selected stacks' was not working from stack tec…
Browse files Browse the repository at this point in the history
…h component editor's context menu
  • Loading branch information
Matthias Koefferlein committed Jul 27, 2024
1 parent fb83b9f commit fec6143
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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 ()));
Expand Down

0 comments on commit fec6143

Please sign in to comment.