From 6b50febd9aa025ab1e8e8f98919d80c5780031c0 Mon Sep 17 00:00:00 2001 From: Jon Beniston Date: Mon, 1 Sep 2025 10:51:42 +0100 Subject: [PATCH] Fix moving features to another workspace. #2501 --- sdrgui/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdrgui/mainwindow.cpp b/sdrgui/mainwindow.cpp index fedeb303c..ac440a508 100644 --- a/sdrgui/mainwindow.cpp +++ b/sdrgui/mainwindow.cpp @@ -1149,7 +1149,7 @@ void LoadConfigurationFSM::loadFeatureSets() QObject::connect( gui, &FeatureGUI::moveToWorkspace, - this, + m_mainWindow, [m_mainWindow=m_mainWindow, gui](int wsIndexDest){ m_mainWindow->featureMove(gui, wsIndexDest); } ); }