From ef5cf18778ae50151d43939c9544f03d8ccfd33e Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 20 Dec 2017 21:49:22 +0100 Subject: [PATCH] Reverted Fixed missing channel registration when creating a new channel from a preset load for the GUI version --- sdrgui/device/deviceuiset.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdrgui/device/deviceuiset.cpp b/sdrgui/device/deviceuiset.cpp index 45ae063e7..39b2ad66f 100644 --- a/sdrgui/device/deviceuiset.cpp +++ b/sdrgui/device/deviceuiset.cpp @@ -182,7 +182,6 @@ void DeviceUISet::loadRxChannelSettings(const Preset *preset, PluginAPI *pluginA channelConfig.m_channelIdURI, this, rxChannel); reg = ChannelInstanceRegistration( channelConfig.m_channelIdURI, rxChannelGUI); - m_rxChannelInstanceRegistrations.append(reg); break; } } @@ -282,7 +281,6 @@ void DeviceUISet::loadTxChannelSettings(const Preset *preset, PluginAPI *pluginA channelConfig.m_channelIdURI, this, txChannel); reg = ChannelInstanceRegistration( channelConfig.m_channelIdURI, txChannelGUI); - m_txChannelInstanceRegistrations.append(reg); break; } }