From 1e0be6a6f7f69dabc2130299aa2baa3ec0eba906 Mon Sep 17 00:00:00 2001 From: f4exb Date: Thu, 10 Sep 2020 22:42:36 +0200 Subject: [PATCH] DeviceUISet: fixed deleteChannel. Fixes issue #625 --- sdrgui/device/deviceuiset.cpp | 1 - sdrgui/webapi/webapiadaptergui.cpp | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sdrgui/device/deviceuiset.cpp b/sdrgui/device/deviceuiset.cpp index c4afa4830..b19c9979c 100644 --- a/sdrgui/device/deviceuiset.cpp +++ b/sdrgui/device/deviceuiset.cpp @@ -171,7 +171,6 @@ void DeviceUISet::deleteChannel(int channelIndex) qPrintable(m_channelInstanceRegistrations[channelIndex].m_channelName), channelIndex); m_channelInstanceRegistrations[channelIndex].m_gui->destroy(); - m_channelInstanceRegistrations.removeAt(channelIndex); renameChannelInstances(); } } diff --git a/sdrgui/webapi/webapiadaptergui.cpp b/sdrgui/webapi/webapiadaptergui.cpp index 3278be52b..9924946fc 100644 --- a/sdrgui/webapi/webapiadaptergui.cpp +++ b/sdrgui/webapi/webapiadaptergui.cpp @@ -2174,9 +2174,9 @@ int WebAPIAdapterGUI::devicesetChannelDelete( else { error.init(); - *error.getMessage() = QString("There is no channel at index %1. There are %2 channels") + *error.getMessage() = QString("There is no channel at index %1. %2 channel(s) left") .arg(channelIndex) - .arg(channelIndex < deviceSet->getNumberOfChannels()); + .arg(deviceSet->getNumberOfChannels()); return 400; } }