From 2da2ee504460184f7c7d25d3a4996aaa0df2b02c Mon Sep 17 00:00:00 2001 From: wmayer Date: Wed, 1 Feb 2023 20:21:34 +0100 Subject: [PATCH] Gui: fix regression of 8801836321: Commands are not shown any more when selecting a category --- src/Gui/DlgCommandsImp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Gui/DlgCommandsImp.cpp b/src/Gui/DlgCommandsImp.cpp index ce6fb871f7..537df3512e 100644 --- a/src/Gui/DlgCommandsImp.cpp +++ b/src/Gui/DlgCommandsImp.cpp @@ -75,7 +75,7 @@ DlgCustomCommandsImp::DlgCustomCommandsImp( QWidget* parent ) connect(ui->commandTreeWidget, &QTreeWidget::currentItemChanged, this, &DlgCustomCommandsImp::onDescription); - connect(ui->commandTreeWidget, &QTreeWidget::currentItemChanged, + connect(ui->categoryTreeWidget, &QTreeWidget::currentItemChanged, this, &DlgCustomCommandsImp::onGroupActivated); CommandManager & cCmdMgr = Application::Instance->commandManager();