Skip to content

Commit 1a58c28

Browse files
author
Thomas Blenkers
committed
Corrected UI initial startup for float representation settings
1 parent c025ae1 commit 1a58c28

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

CommonControls/BaseForm.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,9 @@ protected void SetFunction(DisplayFormat fmt)
189189
case DisplayFormat.LED:
190190
radioButtonLED.Checked = true;
191191
break;
192+
case DisplayFormat.FloatReverse:
193+
radioButtonReverseFloat.Checked = true;
194+
break;
192195
}
193196
}
194197

@@ -530,6 +533,9 @@ protected DisplayFormat DisplayFormat
530533
case DisplayFormat.Integer:
531534
radioButtonInteger.Checked = true;
532535
break;
536+
case DisplayFormat.FloatReverse:
537+
radioButtonReverseFloat.Checked = true;
538+
break;
533539
}
534540
_displayFormat = value;
535541
CurrentTab.DisplayFormat = DisplayFormat;

0 commit comments

Comments
 (0)