Skip to content

Commit e2cd3b1

Browse files
synchuNikola Nyagolovsdatkinson
authored
[BUGFIX] Fix infinite loop in GUI update
* Fixing issue #541 where NeuralAmpModelerPlugin causes plugin host(s) to crash and/or exit unexpectedly * Update NeuralAmpModelerControls.h SetDirty(false); --------- Co-authored-by: Nikola Nyagolov <nnyagolov@itnlbg.com> Co-authored-by: Steven Atkinson <steven@atkinson.mn>
1 parent 5a70d5d commit e2cd3b1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

NeuralAmpModeler/NeuralAmpModelerControls.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,8 @@ class NAMSettingsPageControl : public IContainerBaseWithNamedChildren
784784
{
785785
IControl::SetValueFromDelegate(normalizedValue, valIdx);
786786
const std::string s = ConvertToString(normalizedValue);
787-
OnTextEntryCompletion(s.c_str(), valIdx);
787+
SetStr(s.c_str());
788+
SetDirty(false);
788789
};
789790

790791
private:

0 commit comments

Comments
 (0)