From fec61438d45cf03f4eca202127a7a1f0c5ee58b5 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sat, 27 Jul 2024 17:26:23 +0200 Subject: [PATCH] Small bugfix: 'Delete selected stacks' was not working from stack tech component editor's context menu --- .../net_tracer/lay_plugin/layNetTracerTechComponentEditor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/tools/net_tracer/lay_plugin/layNetTracerTechComponentEditor.cc b/src/plugins/tools/net_tracer/lay_plugin/layNetTracerTechComponentEditor.cc index 51f8ea1ab7..ee3885303a 100644 --- a/src/plugins/tools/net_tracer/lay_plugin/layNetTracerTechComponentEditor.cc +++ b/src/plugins/tools/net_tracer/lay_plugin/layNetTracerTechComponentEditor.cc @@ -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 ()));