Skip to content

Commit 106ef02

Browse files
committed
Fix loading record node params
1 parent ab32ac7 commit 106ef02

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Source/Processors/RecordNode/RecordNodeEditor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,10 @@ void RecordNodeEditor::loadCustomParameters(XmlElement* xml)
176176
{
177177

178178
//Get saved record path
179-
dataPathLabel->setText(xmlNode->getStringAttribute("path"), juce::NotificationType::dontSendNotification);
179+
dataPathLabel->setText(xmlNode->getStringAttribute("path"), juce::NotificationType::sendNotification);
180180
engineSelectCombo->setSelectedId(xmlNode->getStringAttribute("engine").getIntValue());
181-
eventRecord->setToggleState((bool)(xmlNode->getStringAttribute("recordEvents").getIntValue()), juce::NotificationType::dontSendNotification);
182-
spikeRecord->setToggleState((bool)(xmlNode->getStringAttribute("recordSpikes").getIntValue()), juce::NotificationType::dontSendNotification);
181+
eventRecord->setToggleState((bool)(xmlNode->getStringAttribute("recordEvents").getIntValue()), juce::NotificationType::sendNotification);
182+
spikeRecord->setToggleState((bool)(xmlNode->getStringAttribute("recordSpikes").getIntValue()), juce::NotificationType::sendNotification);
183183

184184

185185
forEachXmlChildElement(*xmlNode, subNode)

0 commit comments

Comments
 (0)