We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e3065e commit ac099a2Copy full SHA for ac099a2
1 file changed
EDSEditorGUI/DeviceODView.cs
@@ -531,13 +531,16 @@ private void ObjectSave()
531
{
532
od.prop.CO_accessSRDO = AccessSRDO.no;
533
}
534
- for (ushort i = 1; i < od.parent.Nosubindexes; i++) {
535
- if (od.parent.subobjects[i].defaultvalue == "") {
+
+ for (ushort i = 1; i < od.parent.Nosubindexes; i++)
536
+ {
537
+ if (od.parent.subobjects[i].defaultvalue == "")
538
539
od.parent.subobjects[i].defaultvalue = textBox_defaultValue.Text;
540
541
542
- // od.actualvalue = textBox_actualValue.Text;
543
+ od.actualvalue = textBox_actualValue.Text;
544
od.HighLimit = textBox_highLimit.Text;
545
od.LowLimit = textBox_lowLimit.Text;
546
0 commit comments