Fix equation submitting twice when submitted via enter key (#1195)

This commit is contained in:
Pepe Rivera 2020-04-23 15:54:04 -07:00 committed by GitHub
parent 0465dc8538
commit 7fb341e9b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,7 +128,9 @@ void CalculatorApp::Controls::MathRichEditBox::OnKeyUp(Platform::Object ^ sender
void MathRichEditBox::OnMathTextPropertyChanged(Platform::String ^ oldValue, Platform::String ^ newValue)
{
SetMathTextProperty(newValue);
SetValue(MathTextProperty, newValue);
// Get the new math text directly from the TextBox since the textbox may have changed its formatting
SetValue(MathTextProperty, GetMathTextProperty());
}
void MathRichEditBox::InsertText(Platform::String ^ text, int cursorOffSet, int selectionLength)