Skip to content
Snippets Groups Projects
Commit d34179f9 authored by Josh Siegle's avatar Josh Siegle
Browse files

Fix issue saving strings in FilterEditor

parent 8a7fd07b
Branches
Tags
No related merge requests found
......@@ -96,10 +96,12 @@ void FilterEditor::labelTextChanged(Label* label)
if (label == highCutValue)
{
label->setText(lastHighCutString, dontSendNotification);
lastHighCutString = label->getText();
}
else
{
label->setText(lastLowCutString, dontSendNotification);
lastLowCutString = label->getText();
}
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment