We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab0ac30 commit 6511c03Copy full SHA for 6511c03
EDSEditorGUI/DeviceODView.cs
@@ -225,7 +225,7 @@ public void PopulateObjectLists(EDSsharp eds_target)
225
if (od.prop.CO_disabled == true)
226
lvi.ForeColor = Color.LightGray;
227
228
- if (index <= 0x1000 || index < 0x2000)
+ if (index >= 0x1000 && index < 0x2000)
229
listView_communication_objects.Items.Add(lvi);
230
else if (index >= 0x2000 && index < 0x6000)
231
listView_manufacturer_objects.Items.Add(lvi);
0 commit comments