We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07966bd commit 7e3065eCopy full SHA for 7e3065e
1 file changed
EDSEditorGUI/DeviceODView.cs
@@ -531,9 +531,13 @@ 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 == "") {
536
+ od.parent.subobjects[i].defaultvalue = textBox_defaultValue.Text;
537
+ }
538
539
- od.defaultvalue = textBox_defaultValue.Text;
- od.actualvalue = textBox_actualValue.Text;
540
+ // od.actualvalue = textBox_actualValue.Text;
541
od.HighLimit = textBox_highLimit.Text;
542
od.LowLimit = textBox_lowLimit.Text;
543
0 commit comments