7
mirror of https://github.com/EEVengers/ThunderScope.git synced 2025-04-22 17:43:44 +00:00

added add/subtract text to math widge

This commit is contained in:
Jason Bonnell 2021-03-22 16:02:55 -04:00
parent 93f2c14a76
commit 443ebb65f5

View File

@ -114,7 +114,7 @@ class TriggerWidget extends React.Component<any, any> {
<label
className="AdditionButtonText"
style={{fontWeight: this.props.mathWidget.mathOperator === MathOperators.Addition ? "bold" : "normal"}}>
{MathOperators.Addition}
ADD ({MathOperators.Addition})
</label>
</button>
<button
@ -123,7 +123,7 @@ class TriggerWidget extends React.Component<any, any> {
<label
className="SubtractionButtonText"
style={{fontWeight: this.props.mathWidget.mathOperator === MathOperators.Subtraction ? "bold" : "normal"}}>
{MathOperators.Subtraction}
SUBTRACT ({MathOperators.Subtraction})
</label>
</button>
</div>