DOF/switch lists (.xml stored in [plugin dir]/common) do not update in UI when changed in plugin file structure. They are saved in the scene properties of the .blend file, maybe a "refresh" button is in order. The following was required in the python console to update the list:
if 'dof_list' in bpy.context.scene:
del bpy.context.scene['dof_list']
print("DOF list cleared from scene.")
else:
print("DOF list not found in scene.")
...followed by a reload, after which the DOF list was empty, but populated after adding a DOF to the scene.
DOF/switch lists (.xml stored in [plugin dir]/common) do not update in UI when changed in plugin file structure. They are saved in the scene properties of the .blend file, maybe a "refresh" button is in order. The following was required in the python console to update the list:
...followed by a reload, after which the DOF list was empty, but populated after adding a DOF to the scene.